Skip to content

Commit

Permalink
v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
guoweilong committed Dec 13, 2017
1 parent b3be778 commit 9273ef5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cgmaptools
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import subprocess
argv_len = len(sys.argv)

def PrintVersion() :
print("Version: 0.0.4")
print("Version: 0.0.6")
#

if (argv_len) == 1 or sys.argv[1] in ["-h", "-H", "--help"]:
Expand Down Expand Up @@ -107,7 +107,7 @@ else :
print(" cgmap2cgbz CGamp => CGbz")
print(" cgbz2cgmap CGbz => CGmap")
print(" cgmap2wig CGmap => WIG")
print(" bismakr2cgmap Bismark => CGmap")
print(" bismark2cgmap Bismark => CGmap")
else :
code2 = sys.argv[2]
if code2 == "bam2cgmap" :
Expand Down
9 changes: 8 additions & 1 deletion src/CGmapFromBAM.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9273ef5

Please sign in to comment.