Spaces:
Sleeping
Sleeping
Kevin Louis
commited on
Commit
•
1a17f8d
1
Parent(s):
4b032bf
Upload code_function_mapping.csv
Browse files- code_function_mapping.csv +17 -9
code_function_mapping.csv
CHANGED
@@ -1,10 +1,18 @@
|
|
1 |
code,function,description
|
2 |
-
a1,DNAseq(dna).
|
3 |
-
a2,DNAseq(dna).
|
4 |
-
a3,DNAseq(dna).
|
5 |
-
a4,DNAseq(dna).
|
6 |
-
a5,DNAseq(dna).
|
7 |
-
a6,DNAseq(dna).
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
code,function,description
|
2 |
+
a1,DNAseq(dna).get_seq_length(),calculates the total number of amino acids or bases in the sequence
|
3 |
+
a2,DNAseq(dna).get_seq_length(),calculates the total number of bases in the sequence
|
4 |
+
a3,DNAseq(dna).get_unit_count('g'),calculates the total number of guanine bases in the sequence
|
5 |
+
a4,DNAseq(dna).get_unit_count('a'),calculates the total number of adenine bases in the sequence
|
6 |
+
a5,DNAseq(dna).get_unit_count('c'),calculates the total number of cytosine bases in the sequence
|
7 |
+
a6,DNAseq(dna).get_unit_count('t'),calculates the total number of thymine bases in the sequence
|
8 |
+
a7,DNAseq(dna).get_gc_content(),calculates the guanine-cytosine (gc) content by percentage
|
9 |
+
a8,DNAseq(dna).get_unit_percentage('c'),calculates the percentage of cytosine in the sequence
|
10 |
+
a9,DNAseq(dna).get_unit_percentage('t'),calculates the percentage of thymine in the sequence
|
11 |
+
a10,DNAseq(dna).get_unit_percentage('g'),calculates the percentage of guanine in the sequence
|
12 |
+
a11,DNAseq(dna).get_unit_percentage('a'),calculates the percentage of adenine in the sequence
|
13 |
+
a12,DNAseq(dna).get_purine_content(),calculates the purine (ag) content by percentage
|
14 |
+
a13,DNAseq(dna).get_pyrimidine_content(),calculates the pyrimidine (ct) content by percentage
|
15 |
+
b1,DNAseq(dna).get_unit_at_position(list_at_index_0(ParameterExtractor(query).extract_integers())),Returns the base at a specified position
|
16 |
+
b2,"DNAseq(dna).subsequence_total_units(list_at_index_0(ParameterExtractor(query).extract_integers()), list_at_index_1(ParameterExtractor(query).extract_integers()))",Calculates the total number of bases in a subsequence defined by specified start and end positions
|
17 |
+
b3,"DNAseq(dna).get_subsequence(list_at_index_0(ParameterExtractor(query).extract_integers()), list_at_index_1(ParameterExtractor(query).extract_integers()))",Returns the bases in a subsequence defined by specified start and end positions
|
18 |
+
c1,DNAgrapher(dna).pie_chart(),graphs a pie chart of bases in the sequence
|