Skip to content

Commit

Permalink
bump version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouyiqi91 committed Jul 24, 2024
1 parent 04803b4 commit 702e45f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
## [1.0.0] - 2024-06-03
- Fix that when use `--match` in `manifest`, match barcode can be `raw/barcodes.tsv.gz`. It should always use `filtered/barcodes.tsv.gz`
- Fix that when use `--match` in `manifest`, match barcode can be `raw/barcodes.tsv.gz`. It should always use `filtered/barcodes.tsv.gz`

## [1.0.1] - 2024-07-24
- Fix an issue that invalid fastq pairs will stop checking other fastq files.
2 changes: 1 addition & 1 deletion sccore/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "1.0.0"
VERSION = "1.0.1"
4 changes: 3 additions & 1 deletion sccore/cli/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ def get_fastq(self, fn, manifest):
return None, None, None
for prefix, sample in manifest.items():
if prefix + "_" in fn:
return sample, prefix, self.get_pair(fn)
pair = self.get_pair(fn)
if pair:
return sample, prefix, pair
return None, None, None

def write_samplesheet(self):
Expand Down

0 comments on commit 702e45f

Please sign in to comment.