forked from pinellolab/CRISPResso2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated readme to remove deprecated commands, updated help text to re…
…flect new version and fastp
- Loading branch information
1 parent
11ebc49
commit cd7d675
Showing
3 changed files
with
9 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -203,7 +203,7 @@ def getCRISPRessoArgParser(parser_title="CRISPResso Parameters", required_params | |
parser.add_argument('--split_interleaved_input', '--split_paired_end', | ||
help='Splits a single fastq file containing paired end reads into two files before running CRISPResso', | ||
action='store_true') | ||
parser.add_argument('--trim_sequences', help='Enable the trimming of Illumina adapters with Trimmomatic', | ||
parser.add_argument('--trim_sequences', help='Enable the trimming with fastp', | ||
action='store_true') | ||
parser.add_argument('--trimmomatic_command', type=str, help='DEPRECATED in v2.3.0, use `--fastp_command`') | ||
parser.add_argument('--trimmomatic_options_string', type=str, | ||
|
@@ -1903,7 +1903,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.\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( | ||
'[Note that as of version 2.3.0 FLASh and Trimmomatic have been replaced by fastp for read merging and trimming. Accordingly, the --flash_command and --trimmomatic_command parameters have been replaced with --fastp_command. Also, --trimmomatic_options_string has been 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 = "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters