File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11# Change log
22All 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
Original file line number Diff line number Diff line change 55
66__author__ = ["Jin Xu" , "Nathan Sheffield" , "Jason Smith" ]
778- __version__ = "0.11.1 "
8+ __version__ = "0.11.2 "
99
1010
1111from 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
You can’t perform that action at this time.
0 commit comments