Tonic commited on
Commit
6483f8f
1 Parent(s): 6a84fdc

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +113 -0
README.md ADDED
@@ -0,0 +1,113 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - token-classification
5
+ dataset_info:
6
+ features:
7
+ - name: transcript
8
+ dtype: string
9
+ - name: protein
10
+ dtype: string
11
+ - name: mapped_to
12
+ dtype: string
13
+ - name: species
14
+ dtype: string
15
+ splits:
16
+ - name: train
17
+ configs:
18
+ - config_name: default
19
+ data_files:
20
+ - split: train
21
+ path: mapped_orthologs.csv
22
+ tags:
23
+ - biology
24
+ - chemistry
25
+ - zoonomia
26
+ - sequence
27
+ - DNA
28
+ - protein
29
+ - transcript
30
+ pretty_name: Zoonomica Mapped Orthologs
31
+ size_categories:
32
+ - 100M<n<1B
33
+ ---
34
+
35
+ # Zoonomia Filtered Orthologs Dataset
36
+
37
+ This dataset has been filtered to remove:
38
+
39
+ 1. Proteins longer than 1000 amino acids
40
+ 2. Proteins with more than {MAX_NUMBER_ORTHOLOGS} orthologs in any species
41
+
42
+ Original number of mapped orthologs: {len(all_mapped_ortholog_df)}
43
+ Filtered number of mapped orthologs: {num_examples}
44
+
45
+ ## Dataset Description
46
+
47
+ - **Point of Contact:** [Your Name or Organization]
48
+ - **Dataset Summary:** This dataset provides information about orthologous proteins across various species from the Zoonomia Project, mapped to human proteins.
49
+ - **Supported Tasks:** Comparative genomics, evolutionary studies, protein function prediction
50
+ - **Languages:** Not applicable (genomic data)
51
+ - **Source Data:** [Zoonomia Project](http://genome.senckenberg.de/download/TOGA/human_hg38_reference/)
52
+
53
+ ## Dataset Structure
54
+
55
+ The dataset consists of a single CSV file with the following columns:
56
+
57
+ - `transcript`: Human transcript ID
58
+ - `protein`: Human protein name
59
+ - `mapped_to`: Non-human (query) organism transcript ID
60
+ - `species`: Name of the query species
61
+
62
+ ## Data Splits
63
+
64
+ This dataset contains only a train split, which includes all the data.
65
+
66
+ ## Dataset Creation
67
+
68
+ ### Curation Rationale
69
+
70
+ This dataset was created to facilitate comparative genomics studies and to provide easy access to ortholog mappings across various species from the Zoonomia Project.
71
+
72
+ ### Source Data
73
+
74
+ The source data was obtained from the Zoonomia Project, specifically from protein alignment files available at http://genome.senckenberg.de/download/TOGA/human_hg38_reference/.
75
+
76
+ ### Annotations
77
+
78
+ The dataset does not contain additional annotations beyond the ortholog mappings provided in the original data.
79
+
80
+ ## Considerations for Using the Data
81
+
82
+ ### Social Impact of Dataset
83
+
84
+ This dataset can contribute to advancements in comparative genomics and evolutionary studies, potentially leading to better understanding of genetic diseases and evolutionary processes.
85
+
86
+ ### Discussion of Biases
87
+
88
+ The dataset may have biases inherent in the original data collection and alignment processes used by the Zoonomia Project. Users should be aware of potential biases in species representation and alignment quality.
89
+
90
+ ### Other Known Limitations
91
+
92
+ - The dataset only includes species available in the Zoonomia Project.
93
+ - Alignment quality may vary across different species and proteins.
94
+
95
+ ## Additional Information
96
+
97
+ ### Dataset Curators
98
+
99
+ [Your Name or Organization]
100
+
101
+ ### Licensing Information
102
+
103
+ {license}
104
+
105
+ ### Citation Information
106
+
107
+ If you use this dataset, please cite both this dataset and the original Zoonomia Project:
108
+
109
+ [Include citation for this dataset and the Zoonomia Project]
110
+
111
+ ### Contributions
112
+
113
+ Thanks to the Zoonomia Project for making the original data available.