Skip to content

Commit

Permalink
fix: update multiqc version to 1.12 (#460)
Browse files Browse the repository at this point in the history
* Bump multiqc version to 1.12

* Apply black formatting
  • Loading branch information
vinisalazar committed Mar 9, 2022
1 parent d66c264 commit 330359d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bio/biobambam2/bamsormadup/wrapper.py
Expand Up @@ -34,7 +34,7 @@
with tempfile.TemporaryDirectory() as tmpdir:
# This folder must not exist; it is created by BamSorMaDup
tmpdir_bamsormadup = Path(tmpdir) / "bamsormadup_{:06d}".format(
random.randrange(10 ** 6)
random.randrange(10**6)
)

shell(
Expand Down
2 changes: 1 addition & 1 deletion bio/gatk/applybqsrspark/wrapper.py
Expand Up @@ -21,7 +21,7 @@

with tempfile.TemporaryDirectory() as tmpdir:
# This folder must not exist; it is created by GATK
tmpdir_shards = Path(tmpdir) / "shards_{:06d}".format(random.randrange(10 ** 6))
tmpdir_shards = Path(tmpdir) / "shards_{:06d}".format(random.randrange(10**6))

shell(
"gatk --java-options '{java_opts}' ApplyBQSRSpark"
Expand Down
2 changes: 1 addition & 1 deletion bio/multiqc/environment.yaml
Expand Up @@ -3,4 +3,4 @@ channels:
- conda-forge
- defaults
dependencies:
- multiqc =1.11
- multiqc =1.12

0 comments on commit 330359d

Please sign in to comment.