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=argparse.ArgumentParser(description='Use Bichrom model for prediction given bed file')
77
+
parser.add_argument('-mseq', required=True,
78
+
help='Sequence Model')
79
+
parser.add_argument('-msc', required=True,
80
+
help='Bichrom Model')
81
+
parser.add_argument('-fa', help='The fasta file for the genome of interest', required=True)
82
+
parser.add_argument('-chromtracks', nargs='+', help='A list of BigWig files for all input chromatin experiments, please follow the same order of training data', required=True)
83
+
parser.add_argument('-nbins', type=int, help='Number of bins for chromatin tracks', required=True)
0 commit comments