Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@ ChangeLog
========= ====================================================================
Version Description
========= ====================================================================
1.2.0 * fix --skip-phix-removal and --disable-trimming, which both ended
in a NameError
* compute the FastQ statistics of R2 as well (R1 only before)
* the adapter section of the report shows the trimmed data (it was
showing the phix data) and links the FastQC reports that exist
* do not hide a failure of the final summary.html anymore
* remove the dead fastp rules and the kraken entries of the rulegraph
1.0.0 * switch to click, pyproject. remove kraken (see multitax pipeline
instead). Uses new convention.
0.10.0 * add missing MANIFEST
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "sequana-quality-control"
version = "1.1.0"
version = "1.2.0"
description = "Quality control pipeline for NGS data (phix removal, adapter trimming, FastQC)"
authors = ["Sequana Team"]
license = "BSD-3"
Expand Down
2 changes: 1 addition & 1 deletion sequana_pipelines/quality_control/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# If input_directory provided, use it otherwise if input_pattern provided,
# use it, otherwise use input_samples.
# ============================================================================
input_directory: /home/cokelaer/Data/Hm2
input_directory:
input_readtag: _R[12]_
input_pattern: '*fastq.gz'
reference_file: phiX174.fa
Expand Down
2 changes: 2 additions & 0 deletions sequana_pipelines/quality_control/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ def main(**options):
# --------------------------------------------------------- trimming
cfg.trimming.software_choice = options.trimming_software_choice
cfg.trimming.do = not options.disable_trimming
# the cutadapt section is the one used by the trimming rules
cfg.cutadapt.do = cfg.trimming.do
qual = options.trimming_quality

if options.trimming_software_choice in ["cutadapt", "atropos"]:
Expand Down
Loading
Loading