etrop commited on
Commit
2f79d04
1 Parent(s): 634eabc

update readme for return values

Browse files
Files changed (1) hide show
  1. README.md +10 -10
README.md CHANGED
@@ -26,17 +26,17 @@ specific kwargs, if applicable, are mentioned in the sections below.<br>
26
  *Note that as you increase the context length to very large numbers you may start to reduce the size of the dataset since a large context size may
27
  cause indexing outside the boundaries of chromosomes.
28
 
29
- | Task | `task_name` | Sample Output | ML Task Type | # Outputs | # Train Seqs | # Test Seqs | Data Source |
30
- |-------|-------------|---------------|-------------------------|-------------|--------------|----------- |----------- |
31
  | Variant Effect Causal eQTL | `variant_effect_causal_eqtl` | {ref sequence, alt sequence, label, tissue, chromosome,position, distance to nearest TSS} | SNP Classification | 1 | 88717 | 8846 | GTEx (via [Enformer](https://www.nature.com/articles/s41592-021-01252-x)) |
32
- | Variant Effect Pathogenic ClinVar | `variant_effect_pathogenic_clinvar` | {ref sequence, alt sequence, label, chromosome, position} | SNP Classification | 1 | 38634 | 1018 | ClinVar, gnomAD (via [GPN-MSA](https://www.biorxiv.org/content/10.1101/2023.10.10.561776v1)) |
33
- | Variant Effect Pathogenic OMIM | `variant_effect_pathogenic_omim` | {ref sequence, alt sequence, label,chromosome, position} | SNP Classification | 1 | - | 2321473 |OMIM, gnomAD (via [GPN-MSA](https://www.biorxiv.org/content/10.1101/2023.10.10.561776v1)) |
34
- | CAGE Prediction | `cage_prediction` | {sequence, labels, chromosome} | Binned Regression | 50 per bin | 33891 | 1922 | FANTOM5 (via [Basenji](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1008050)) |
35
- | Bulk RNA Expression | `bulk_rna_expression` | {sequence, labels, chromosome,position} | Seq-wise Regression | 218 | 22827 | 990 | GTEx, FANTOM5 (via [ExPecto](https://www.nature.com/articles/s41588-018-0160-6)) |
36
- | Chromatin Features Histone_Marks | `chromatin_features_histone_marks` | {sequence, labels,chromosome, position} | Seq-wise Classification | 20 | 2203689 | 227456 | ENCODE, Roadmap Epigenomics (via [DeepSea](https://pubmed.ncbi.nlm.nih.gov/30013180/) |
37
- | Chromatin Features DNA_Accessibility | `chromatin_features_dna_accessibility` | {sequence, labels,chromosome, position} | Seq-wise Classification | 20 | 2203689 | 227456 | ENCODE, Roadmap Epigenomics (via [DeepSea](https://pubmed.ncbi.nlm.nih.gov/30013180/)) |
38
- | Regulatory Elements Promoter | `regulatory_element_promoter` | {sequence, label,chromosome, start, stop} | Seq-wise Classification | 1| 953376 | 96240 | SCREEN |
39
- | Regulatory Elements Enhancer | `regulatory_element_enhancer` | {sequence, label,chromosome, start, stop} | Seq-wise Classification | 1| 1914575 | 192201 | SCREEN |
40
 
41
  ## Usage Example
42
  ```python
 
26
  *Note that as you increase the context length to very large numbers you may start to reduce the size of the dataset since a large context size may
27
  cause indexing outside the boundaries of chromosomes.
28
 
29
+ | Task | `task_name` | Sample Output | ML Task Type | # Outputs | # Train Seqs | # Test Seqs | Data Source |
30
+ |-------|-------------|-------------------------------------------------------------------------------------------|-------------------------|-------------|--------------|----------- |----------- |
31
  | Variant Effect Causal eQTL | `variant_effect_causal_eqtl` | {ref sequence, alt sequence, label, tissue, chromosome,position, distance to nearest TSS} | SNP Classification | 1 | 88717 | 8846 | GTEx (via [Enformer](https://www.nature.com/articles/s41592-021-01252-x)) |
32
+ | Variant Effect Pathogenic ClinVar | `variant_effect_pathogenic_clinvar` | {ref sequence, alt sequence, label, chromosome, position} | SNP Classification | 1 | 38634 | 1018 | ClinVar, gnomAD (via [GPN-MSA](https://www.biorxiv.org/content/10.1101/2023.10.10.561776v1)) |
33
+ | Variant Effect Pathogenic OMIM | `variant_effect_pathogenic_omim` | {ref sequence, alt sequence, label,chromosome, position} | SNP Classification | 1 | - | 2321473 |OMIM, gnomAD (via [GPN-MSA](https://www.biorxiv.org/content/10.1101/2023.10.10.561776v1)) |
34
+ | CAGE Prediction | `cage_prediction` | {sequence, labels, chromosome,label_start_position,label_stop_position} | Binned Regression | 50 per bin | 33891 | 1922 | FANTOM5 (via [Basenji](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1008050)) |
35
+ | Bulk RNA Expression | `bulk_rna_expression` | {sequence, labels, chromosome,position} | Seq-wise Regression | 218 | 22827 | 990 | GTEx, FANTOM5 (via [ExPecto](https://www.nature.com/articles/s41588-018-0160-6)) |
36
+ | Chromatin Features Histone_Marks | `chromatin_features_histone_marks` | {sequence, labels,chromosome, position, label_start_position,label_stop_position} | Seq-wise Classification | 20 | 2203689 | 227456 | ENCODE, Roadmap Epigenomics (via [DeepSea](https://pubmed.ncbi.nlm.nih.gov/30013180/) |
37
+ | Chromatin Features DNA_Accessibility | `chromatin_features_dna_accessibility` | {sequence, labels,chromosome, position, label_start_position,label_stop_position} | Seq-wise Classification | 20 | 2203689 | 227456 | ENCODE, Roadmap Epigenomics (via [DeepSea](https://pubmed.ncbi.nlm.nih.gov/30013180/)) |
38
+ | Regulatory Elements Promoter | `regulatory_element_promoter` | {sequence, label,chromosome, start, stop, label_start_position,label_stop_position} | Seq-wise Classification | 1| 953376 | 96240 | SCREEN |
39
+ | Regulatory Elements Enhancer | `regulatory_element_enhancer` | {sequence, label,chromosome, start, stop, label_start_position,label_stop_position} | Seq-wise Classification | 1| 1914575 | 192201 | SCREEN |
40
 
41
  ## Usage Example
42
  ```python