Mercurial > repos > devteam > cummerbund
annotate cummeRbund_options.py @ 2:ac2ebc60ef5d draft
Uploaded corrected dynamic options
author | devteam |
---|---|
date | Mon, 16 Mar 2015 15:43:02 -0400 |
parents | f3012521ea79 |
children | c3b54a4b7741 |
rev | line source |
---|---|
2 | 1 import sqlite3 |
0
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
2 |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
3 def get_genes( database_path ): |
2 | 4 conn = sqlite3.connect( database_path ) |
5 gene_ids = conn.execute( 'SELECT gene_short_name, gene_id FROM genes ORDER BY gene_short_name' ) | |
0
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
6 return [ ( gene_id[ 0 ], gene_id[ 1 ], False ) for gene_id in gene_ids ] |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
7 |
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
8 def get_samples( database_path ): |
2 | 9 conn = sqlite3.connect( database_path ) |
10 samples = conn.execute( 'SELECT sample_name FROM samples ORDER BY sample_name' ) | |
0
587c425b4e76
Initial commit with version 1.0.0 of the cummeRbund wrapper.
devteam
parents:
diff
changeset
|
11 return [ ( sample[ 0 ], sample[ 0 ], False ) for sample in samples ] |