-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3be778
commit 9273ef5
Showing
2 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -805,8 +805,15 @@ int main(int argc, char **argv){ | |
cmd.usage = "-b <BAM> -g <genome.fa> -o <prefix>\n" | ||
" (aka CGmapFromBAM)\n" \ | ||
" Description: Convert BAM file to CGmap/ATCGmap format.\n" \ | ||
" Notice: \n" \ | ||
" * For BS-Seeker2, CGmapTools seamlessly comparable with its BAM.\n" \ | ||
" * For Bismark, CGmapTools comparable with single end mode; \n" \ | ||
" * and comparable with v0.8.2 and older version of bismarks for paired-end.\n" \ | ||
" * Bismark changed FLAG strategy since v0.8.3, which raise unexpected count of nucleotides.\n" \ | ||
" * For BSmap, we can not guarantee generating right CGmap from our experience.\n" \ | ||
" * For more information, please contact us. Contribution to improve comparability is welcome!\n" \ | ||
" Contact: Guo, Weilong; [email protected]\n" \ | ||
" Last update: 2016-12-07"; | ||
" Last update: 2017-12-13"; | ||
command_option(&cmd, "-b", "--bam <arg>", "input bam file, should be sorted first", cmd_bam); | ||
command_option(&cmd, "-g", "--genome <arg>", "genome file, fasta", cmd_genome); | ||
command_option(&cmd, "-O", "--rmOverlap", "Removed overlapped region for paired-end library if specified.", cmd_RmOverlap); | ||
|