You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Skip read trimming stage at start of pipeline",
973
973
)
974
+
subparser_variant_call_one_sample.add_argument(
975
+
"--filter_min_dp",
976
+
type=int,
977
+
default=2,
978
+
help="Minimum depth filter cutoff (same as minos option --filter_min_dp) in final VCF file [%(default)s]",
979
+
metavar="INT",
980
+
)
981
+
subparser_variant_call_one_sample.add_argument(
982
+
"--filter_min_frs",
983
+
type=float,
984
+
default=0.9,
985
+
help="Minimum FRS filter cutoff (same as minos option --filter_min_frs) in final VCF file [%(default)s]",
986
+
metavar="FLOAT",
987
+
)
988
+
subparser_variant_call_one_sample.add_argument(
989
+
"--filter_min_gcp",
990
+
type=float,
991
+
default=0.5,
992
+
help="Minimum GCP filter cutoff (same as minos option --filter_min_gcp) in final VCF file [%(default)s]",
993
+
metavar="FLOAT",
994
+
)
995
+
subparser_variant_call_one_sample.add_argument(
996
+
"--filter_max_dp",
997
+
type=float,
998
+
default=3.0,
999
+
help="Determines maximum depth filter cutoff (same as minos option --filter_max_dp) in final VCF file. Using a value of 'x' here sets the cutoff to be more than x standard deviations from the mean read depth [%(default)s]",
1000
+
metavar="FLOAT",
1001
+
)
1002
+
subparser_variant_call_one_sample.add_argument(
1003
+
"--fasta_allow_minos_filter_fail",
1004
+
action="store_true",
1005
+
help="When making consensus fasta, ignore whether or not PASS is in the FILTER column of minos calls. Default is to put an N whenever there is a filter fail",
1006
+
)
1007
+
subparser_variant_call_one_sample.add_argument(
1008
+
"--fasta_min_frs",
1009
+
type=float,
1010
+
help="When making consensus fasta, minimum fraction of reads (FRS) required supporting the call. If FRS is less than the given value, then N is added to the FASTA [%(default)s]",
1011
+
default=0.9,
1012
+
metavar="FLOAT",
1013
+
)
1014
+
subparser_variant_call_one_sample.add_argument(
1015
+
"--fasta_min_dp",
1016
+
type=int,
1017
+
help="When making consensus fasta, minimum total read depth. If depth is less than this, then N is added to the FASTA [%(default)s]",
1018
+
default=2,
1019
+
metavar="INT",
1020
+
)
974
1021
subparser_variant_call_one_sample.add_argument(
975
1022
"ref_dir", help="Directory of reference files, made by clockwork reference_prepare"
0 commit comments