Skip to content

Commit

Permalink
Merge pull request #269 from databio/dev
Browse files Browse the repository at this point in the history
v0.11.2 release
  • Loading branch information
donaldcampbelljr authored Jan 22, 2024
2 parents ec34c84 + e26ccf9 commit ffa7cc2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change log
All notable changes to this project will be documented in this file.

## [0.11.2] -- 2024-01-22

### Fixed
- fix fastqc path Issue #268

## [0.11.1] -- 2024-01-17

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions pipelines/pepatac.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

__author__ = ["Jin Xu", "Nathan Sheffield", "Jason Smith"]
__email__ = "[email protected]"
__version__ = "0.11.1"
__version__ = "0.11.2"


from argparse import ArgumentParser
Expand Down Expand Up @@ -798,9 +798,9 @@ def main():
trimmed_fastq_R2 = trimming_prefix + "_R2_trim.fastq"
fastqc_folder = os.path.join(param.outfolder, "fastqc")
fastqc_report = os.path.join(fastqc_folder,
trimming_prefix + "_R1_trim_fastqc.html")
args.sample_name + "_R1_trim_fastqc.html")
fastqc_report_R2 = os.path.join(fastqc_folder,
trimming_prefix + "_R2_trim_fastqc.html")
args.sample_name + "_R2_trim_fastqc.html")
if ngstk.check_command(tools.fastqc):
ngstk.make_dir(fastqc_folder)

Expand Down

0 comments on commit ffa7cc2

Please sign in to comment.