Skip to content

Commit ffa7cc2

Browse files
Merge pull request #269 from databio/dev
v0.11.2 release
2 parents ec34c84 + e26ccf9 commit ffa7cc2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change log
22
All notable changes to this project will be documented in this file.
33

4+
## [0.11.2] -- 2024-01-22
5+
6+
### Fixed
7+
- fix fastqc path Issue #268
8+
49
## [0.11.1] -- 2024-01-17
510

611
### Fixed

pipelines/pepatac.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
__author__ = ["Jin Xu", "Nathan Sheffield", "Jason Smith"]
77
__email__ = "[email protected]"
8-
__version__ = "0.11.1"
8+
__version__ = "0.11.2"
99

1010

1111
from argparse import ArgumentParser
@@ -798,9 +798,9 @@ def main():
798798
trimmed_fastq_R2 = trimming_prefix + "_R2_trim.fastq"
799799
fastqc_folder = os.path.join(param.outfolder, "fastqc")
800800
fastqc_report = os.path.join(fastqc_folder,
801-
trimming_prefix + "_R1_trim_fastqc.html")
801+
args.sample_name + "_R1_trim_fastqc.html")
802802
fastqc_report_R2 = os.path.join(fastqc_folder,
803-
trimming_prefix + "_R2_trim_fastqc.html")
803+
args.sample_name + "_R2_trim_fastqc.html")
804804
if ngstk.check_command(tools.fastqc):
805805
ngstk.make_dir(fastqc_folder)
806806

0 commit comments

Comments
 (0)