Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo Recommand → Recommend caught by linting. #151

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ We provided a new document for applying **force calling** (or **regenotyping**)
|--retain_work_dir|Enable to retain temporary folder and files.|False|
|--write_old_sigs|Enable to output temporary sig files.|False|
|--report_readid|Enable to report supporting read ids for each SV.|False|
|--max_split_parts|Maximum number of split segments a read may be aligned before it is ignored. All split segments are considered when using -1. (Recommand -1 when applying assembly-based alignment.)|7|
|--max_split_parts|Maximum number of split segments a read may be aligned before it is ignored. All split segments are considered when using -1. (Recommend -1 when applying assembly-based alignment.)|7|
|--min_mapq|Minimum mapping quality value of alignment to be taken into account.|20|
|--min_read_len|Ignores reads that only report alignments with not longer than bp.|500|
|--merge_del_threshold|Maximum distance of deletion signals to be merged.|0|
Expand Down
2 changes: 1 addition & 1 deletion src/cuteSV/cuteSV_Description.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def parseArgs(argv):
GroupSignaturesCollect = parser.add_argument_group('Collection of SV signatures')
GroupSignaturesCollect.add_argument('-p', '--max_split_parts',
help = "Maximum number of split segments a read may be aligned before it is ignored. All split segments are considered when using -1. \
(Recommand -1 when applying assembly-based alignment.)[%(default)s]",
(Recommend -1 when applying assembly-based alignment.)[%(default)s]",
default = 7,
type = int)
GroupSignaturesCollect.add_argument('-q', '--min_mapq',
Expand Down