etrop commited on
Commit
c423653
1 Parent(s): 3806fd0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -28,6 +28,26 @@ cause indexing outside the boundaries of chromosomes.
28
  | Variant Effect Gene Expression | `variant_effect_gene_expression` | {ref sequence, alt sequence, label, tissue, chromosome, distance to nearest TSS} | 89060 | 8862 |
29
 
30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  ### 1. CAGE Prediction
32
  Cap Analysis Gene Expression(CAGE) is a biological assay used to measure the level of mRNA production rather than steady state values, taking into account both production and
33
  degradation. Being able to accurately predict mRNA levels as measured by CAGE is essential for deciphering tissue-specific expression patterns, transcriptional networks, and
 
28
  | Variant Effect Gene Expression | `variant_effect_gene_expression` | {ref sequence, alt sequence, label, tissue, chromosome, distance to nearest TSS} | 89060 | 8862 |
29
 
30
 
31
+ ## Usage Example
32
+ ```python
33
+ from datasets import load_dataset
34
+
35
+ # Use this parameter to download sequences of arbitrary length (see docs below for edge cases)
36
+ sequence_length=2048
37
+
38
+ # One of ["cage_prediction", "bulk_rna_expression", "variant_effect_gene_expression"]
39
+ task_name = "variant_effect_gene_expression"
40
+
41
+ dataset = load_dataset(
42
+ "InstaDeepAI/genomics-long-range-benchmark",
43
+ task_name=task_name,
44
+ sequence_length=sequence_length,
45
+ )
46
+
47
+ ```
48
+
49
+
50
+
51
  ### 1. CAGE Prediction
52
  Cap Analysis Gene Expression(CAGE) is a biological assay used to measure the level of mRNA production rather than steady state values, taking into account both production and
53
  degradation. Being able to accurately predict mRNA levels as measured by CAGE is essential for deciphering tissue-specific expression patterns, transcriptional networks, and