Skip to content

Commit

Permalink
Fix typo in bbmap count summary output filename
Browse files Browse the repository at this point in the history
  • Loading branch information
boulund committed Aug 30, 2021
1 parent 0cf7b7a commit c75bcb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ situations.
- `preprocessing_summary.py` now parses the correct number of unclassified reads.
- Rule `bracken_kreport` now correctly produces kreport output file for
downstream processing.
- Fixed typo in count summary output filenames for BBMap.

### Changed

Expand Down
4 changes: 2 additions & 2 deletions rules/mappers/bbmap.smk
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ for bbmap_config in config["bbmap"]:
db_name=bbmap_config["db_name"],
sample=SAMPLES,
output_type=("sam.gz", "covstats.txt", "rpkm.txt"))
counts_table = expand(str(OUTDIR/"bbmap/{db_name}/counts.{column}.txt"),
counts_table = expand(str(OUTDIR/"bbmap/{db_name}/counts.{column}.tsv"),
db_name=bbmap_config["db_name"],
column=map(str.strip, bbmap_config["counts_table"]["columns"].split(",")))
featureCounts = expand(str(OUTDIR/"bbmap/{db_name}/all_samples.featureCounts{output_type}"),
Expand Down Expand Up @@ -103,7 +103,7 @@ for bbmap_config in config["bbmap"]:
db_name=bbmap_config["db_name"],
sample=SAMPLES)
output:
expand(str(OUTDIR/"bbmap/{db_name}/counts.{column}.txt"),
expand(str(OUTDIR/"bbmap/{db_name}/counts.{column}.tsv"),
db_name=bbmap_config["db_name"],
column=map(str.strip, bbmap_config["counts_table"]["columns"].split(","))
)
Expand Down

0 comments on commit c75bcb8

Please sign in to comment.