Skip to content

Commit

Permalink
Added all of the valid CGCFinder options (#109)
Browse files Browse the repository at this point in the history
['all', 'tf', 'tp', 'stp', 'tp+tf', 'tp+stp', 'tf+stp']
  • Loading branch information
AaronAOliver authored Feb 10, 2023
1 parent 65b58ec commit 8164a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbcan_cli/run_dbcan.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ def cli_main():
parser.add_argument('--out_dir', default="output", help='Output directory')
parser.add_argument('--db_dir', default="db", help='Database directory')
parser.add_argument('--cgc_dis', default=2, type=int, help='CGCFinder Distance value')
parser.add_argument('--cgc_sig_genes', default='tp', choices=['tp', 'tf','all'], help='CGCFinder Signature Genes value')
parser.add_argument('--cgc_sig_genes', default='tp', choices=['tf', 'tp', 'stp', 'tp+tf', 'tp+stp', 'tf+stp', 'all'], help='CGCFinder Signature Genes value')
parser.add_argument('--tools', '-t', nargs='+', choices=['hmmer', 'diamond', 'eCAMI', 'all'], default='all', help='Choose a combination of tools to run')
parser.add_argument('--use_signalP', default=False, type=bool, help='Use signalP or not, remember, you need to setup signalP tool first. Because of signalP license, Docker version does not have signalP.')
parser.add_argument('--signalP_path', '-sp',default="signalp", type=str, help='The path for signalp. Default location is signalp')
Expand Down

0 comments on commit 8164a01

Please sign in to comment.