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
fprintf(stderr, " -z INT random seed (-1 uses the current time) [%d]\n", opt->seed);
135
-
fprintf(stderr, " -M generate a mutations file only [%s]\n", __IS_TRUE(opt->muts_only));
136
+
fprintf(stderr, " -M output files to generate [%d]:\n", opt->output_type);
137
+
fprintf(stderr, " 0: both reads and mutation files\n");
138
+
fprintf(stderr, " 1: reads only\n");
139
+
fprintf(stderr, " 2: mutations only\n");
136
140
fprintf(stderr, " -m FILE the mutations txt file to re-create [%s]\n", (MUT_INPUT_TXT!=opt->fn_muts_input_type) ? "not using" : opt->fn_muts_input);
137
141
fprintf(stderr, " -b FILE the bed-like file set of candidate mutations [%s]\n", (MUT_INPUT_BED==opt->fn_muts_input_type) ? "not using" : opt->fn_muts_input);
138
142
fprintf(stderr, " -v FILE the vcf file set of candidate mutations (use pl tag for strand) [%s]\n", (MUT_INPUT_VCF==opt->fn_muts_input_type) ? "not using" : opt->fn_muts_input);
139
143
fprintf(stderr, " -x FILE the bed of regions to cover [%s]\n", (NULL==opt->fn_regions_bed) ? "not using" : opt->fn_regions_bed);
140
144
fprintf(stderr, " -P STRING a read prefix to prepend to each read name [%s]\n", (NULL==opt->read_prefix) ? "not using" : opt->read_prefix);
141
145
fprintf(stderr, " -q STRING a fixed base quality to apply (single character) [%s]\n", (NULL==opt->fixed_quality) ? "not using" : opt->fixed_quality);
142
146
fprintf(stderr, " -Q FLOAT standard deviation of the base quality scores [%.2lf]\n", (NULL==opt->fixed_quality) ? opt->quality_std : 0.0);
143
-
fprintf(stderr, " -o INT output type for the FASTQ files [%d]:\n", opt->output_type);
147
+
fprintf(stderr, " -o INT output type for the FASTQ files [%d]:\n", opt->reads_output_type);
144
148
fprintf(stderr, " 0: interleaved (bfast) and per-read-end (bwa)\n");
0 commit comments