|
hello - i'm trying to set the -e flag in bwa aln and it doesn't appear to change. normally when i edit the flags and hit enter, the stdout shows the updated parameter settings. i type: ./bwa aln -o 6 and it prints: Options:
where the number in brackets after the -o option is what i've entered. when i do this for the -e flag, it doesn't change. i type: ./bwa aln -e 5 and it prints: Options:
any ideas what's going on here? has anyone been able to successfully change this parameter? it's entirely possible i'm misunderstanding how something works. any help would be great. thank you! SH1 |
|
All the other parameters update the value in brackets to equal the parameter you enter, but that's not the case with the -e parameter. (see line 270 of bwtaln.c) It may be a bug or may have been intentional. Looking at the rest of the code, though, it seems that it does change the value of -e, it just doesn't report it in the usage message. Just put in -e 5 and it should work just fine, even if the usage message reports it as -1. thanks! i wouldn't have even known where to start.
(23 Aug '10, 14:41)
SH2
|