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
parser_ppileup=subparsers.add_parser("ppileup", help="BAM: Currently it is slower than just running mpileup on 1 CPU. Might be possible to optimize later. Run samtools mpileup in parallel when pileup is required for specific positions by dividing the input bed file.", formatter_class=argparse.ArgumentDefaultsHelpFormatter)
2623
2617
# </editor-fold>
2624
2618
2625
-
# <editor-fold desc="syri">
2619
+
# <editor-fold desc="syri CLI">
2626
2620
parser_runsyri=subparsers.add_parser("runsyri", help=hyellow("syri: Parser to align and run syri on two genomes"),
parser_plthist=subparsers.add_parser("plthist", help="Plot: Takes frequency output (like from uniq -c) and generates a histogram plot", formatter_class=argparse.ArgumentDefaultsHelpFormatter)
2638
2631
parser_plotal=subparsers.add_parser("plotal", help="Plot: Visualise pairwise-whole genome alignments between multiple genomes", formatter_class=argparse.ArgumentDefaultsHelpFormatter)
2639
2632
parser_plotbar=subparsers.add_parser("pltbar", help="Plot: Generate barplot. Input: a two column file with first column as features and second column as values", formatter_class=argparse.ArgumentDefaultsHelpFormatter)
2633
+
# </editor-fold>
2634
+
2640
2635
2641
2636
## Assembly graphs
2642
2637
parser_asmreads=subparsers.add_parser("asmreads", help=hyellow("GFA: For a given genomic region, get reads that constitute the corresponding assembly graph"), formatter_class=argparse.ArgumentDefaultsHelpFormatter)
@@ -2659,6 +2654,12 @@ def main(cmd):
2659
2654
parser.print_help()
2660
2655
sys.exit()
2661
2656
2657
+
# bamrc2af
2658
+
parser_bamrc2af.set_defaults(func=bamrc2af)
2659
+
parser_bamrc2af.add_argument("bamrc", help="BAM readcount file generated using bamrc", type=argparse.FileType('r'))
0 commit comments