Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/dpryan79/MethylDackel
Browse files Browse the repository at this point in the history
  • Loading branch information
dpryan79 committed Apr 13, 2019
2 parents 854920d + 3c5a71d commit 344b1be
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion extract.c
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,8 @@ void extract_usage() {
" -o, --opref STR Output filename prefix. CpG/CHG/CHH context metrics will be\n"
" output to STR_CpG.bedGraph and so on.\n"
" --keepDupes By default, any alignment marked as a duplicate is ignored.\n"
" This option causes them to be incorporated.\n"
" This option causes them to be incorporated. This will unset\n"
" bit 0x400 in --ignoreFlags.\n"
" --keepSingleton By default, if only one read in a pair aligns (a singleton)\n"
" then it's ignored.\n"
" --keepDiscordant By default, paired-end alignments with the properly-paired bit\n"
Expand Down Expand Up @@ -873,6 +874,9 @@ int extract_main(int argc, char *argv[]) {
fprintf(stderr, "-q %i is invalid. Resetting to 0, which is the lowest possible value.\n", config.minMapq);
config.minMapq = 0;
}
if(config.keepDupes > 0 && (config.ignoreFlags & 0x400)) {
config.ignoreFlags -= 0x400;
}
if(config.fraction+config.counts+config.logit+config.methylKit+config.cytosine_report > 1) {
fprintf(stderr, "More than one of --fraction, --counts, --methylKit, --cytosine_report and --logit were specified. These are mutually exclusive.\n");
extract_usage();
Expand Down

0 comments on commit 344b1be

Please sign in to comment.