Skip to content

Commit

Permalink
Merge branch 'master' of github.com:sequana/demultiplex
Browse files Browse the repository at this point in the history
  • Loading branch information
cokelaer committed Nov 19, 2021
2 parents 8bd2db6 + 70e02b1 commit c982243
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ Changelog
Version Description
========= =======================================================================
1.1.2 * add the --mars-seq option that fills the config automatically
* fix the none_and_force merging strategy option
1.1.1 * fix a regression bug
1.1.0 * Uses new sequana-wrappers repository
1.0.5 * Fix regression bug to cope with new snakemake API
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions doc/wiki/different_L1L2_merge_nomerge/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
In this example, we had a NextSeq run with two lanes. The Lanes should be merged in theory.
We got a relatively good quality. However, the ratio of determined/undetermined in one of the lane was suspicious.
We decided to remove the merging. It appeare that one of the lane was faulty.
2 changes: 1 addition & 1 deletion sequana_pipelines/demultiplex/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def main(args=None):
with open(runparam, "r") as fin:
data = fin.read()
if "NextSeq" in data and options.merging_strategy != "merge":
if otions.merging_strategy == "none_and_force":
if options.merging_strategy == "none_and_force":
msg = "This is a NextSeq. You set the --merging-strategy to"
msg += " none_and_force. So, we proceed with no merging strategy"
logger.warning(msg)
Expand Down

0 comments on commit c982243

Please sign in to comment.