Skip to content

Commit

Permalink
Add note in output header for change in default CRISPRessoPooled
Browse files Browse the repository at this point in the history
In the next release (2.3.0) the `--demultiplex_only_at_amplicons` will be the
default when running in mixed-mode. This is to allow for inexact alignments of
the reads and the amplicons to the genome. For more context, see this issue
pinellolab#276
  • Loading branch information
Colelyman committed Jan 27, 2023
1 parent aa08f81 commit 5819f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRISPResso2/CRISPRessoShared.py
Original file line number Diff line number Diff line change
Expand Up @@ -1624,7 +1624,7 @@ def get_crispresso_header(description, header_str):
term_width) + "\n" + output_line

output_line += '\n' + ('[CRISPResso version ' + __version__ + ']').center(term_width) + '\n' + (
'[Note that starting in version 2.3.0 FLASh and Trimmomatic will be replaced by fastp for read merging and trimming. Accordingly, the --flash_command and --trimmomatic_command parameters will be replaced with --fastp_command. Also, --trimmomatic_options_string will be replaced with --fastp_options_string.]').center(
'[Note that starting in version 2.3.0 FLASh and Trimmomatic will be replaced by fastp for read merging and trimming. Accordingly, the --flash_command and --trimmomatic_command parameters will be replaced with --fastp_command. Also, --trimmomatic_options_string will be replaced with --fastp_options_string.\n\nAlso in version 2.3.0, when running CRISPRessoPooled in mixed-mode (amplicon file and genome are provided) the default behavior will be as if the --demultiplex_only_at_amplicons parameter is provided. This change means that reads and amplicons do not need to align to the exact locations.]').center(
term_width) + "\n" + ('[For support contact [email protected] or [email protected]]').center(term_width) + "\n"

description_str = ""
Expand Down

0 comments on commit 5819f68

Please sign in to comment.