diff options
author | zsloan | 2017-12-20 23:53:42 +0000 |
---|---|---|
committer | zsloan | 2017-12-20 23:53:42 +0000 |
commit | 01b7d8a3e2807405cb274cf064a4ba01f8d15bf6 (patch) | |
tree | 41e2a7323c00524f91545594f59ee61d10905c7c /wqflask/maintenance/gen_select_dataset.py | |
parent | 25f2d02ae56e1a9f8c0a03415e564ee3bf32512e (diff) | |
parent | 8eb02512f87aa789f41313d84c7789ce764f6fe3 (diff) | |
download | genenetwork2-01b7d8a3e2807405cb274cf064a4ba01f8d15bf6.tar.gz |
Merge branch 'testing' of https://github.com/genenetwork/genenetwork2
Diffstat (limited to 'wqflask/maintenance/gen_select_dataset.py')
-rw-r--r-- | wqflask/maintenance/gen_select_dataset.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/wqflask/maintenance/gen_select_dataset.py b/wqflask/maintenance/gen_select_dataset.py index 6553f090..f62d0cc1 100644 --- a/wqflask/maintenance/gen_select_dataset.py +++ b/wqflask/maintenance/gen_select_dataset.py @@ -96,13 +96,14 @@ def get_groups(species): Cursor.execute("""select InbredSet.Name, InbredSet.FullName from InbredSet, Species, ProbeFreeze, GenoFreeze, PublishFreeze where Species.Name = '%s' - and InbredSet.SpeciesId = Species.Id and InbredSet.Name != 'BXD300' and + and InbredSet.SpeciesId = Species.Id and (PublishFreeze.InbredSetId = InbredSet.Id or GenoFreeze.InbredSetId = InbredSet.Id or ProbeFreeze.InbredSetId = InbredSet.Id) group by InbredSet.Name - order by InbredSet.Name""" % species_name) - groups[species_name] = list(Cursor.fetchall()) + order by InbredSet.FullName""" % species_name) + results = Cursor.fetchall() + groups[species_name] = list(results) return groups |