Skip to content

Commit

Permalink
Add ssRNA-seq to the list of supported strategies
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed May 21, 2024
1 parent cdbe165 commit 4352fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rnaseq_pipeline/miniml_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def collect_geo_samples(f):
sra_relation = x.find("miniml:Relation[@type='SRA']", ns)
if gsm_id is None or platform_id is None or library_strategy is None or sra_relation is None:
continue
if library_strategy.text == 'RNA-Seq':
if library_strategy.text in ['RNA-Seq', 'ssRNA-seq']:
gsm_identifiers.add(gsm_id.text)

return gsm_identifiers
Expand Down

0 comments on commit 4352fec

Please sign in to comment.