Skip to content

Commit

Permalink
Fix bug when setting is_paired
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Nov 29, 2024
1 parent d0d2fdd commit 1e1cce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rnaseq_pipeline/sources/sra.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def run(self):
elif self.force_single_end:
is_paired = False
else:
run.LibraryLayout == 'PAIRED'
is_paired = run.LibraryLayout == 'PAIRED'

metadata = dict(self.metadata)
# do not override the sample_id when invoked from DownloadGeoSample or DownloadGemmaExperiment
Expand Down

0 comments on commit 1e1cce2

Please sign in to comment.