# HG changeset patch # User iuc # Date 1586316035 14400 # Node ID 6cf84410cb2e0edda8517411b7e996f2a61f4014 # Parent fe3c434513196df56dae013bb3c75310b9f2f710 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/iedb_api commit 848c47fb29e9f1d319056a94a7dbd90129a4aafc" diff -r fe3c43451319 -r 6cf84410cb2e iedb_api.py --- a/iedb_api.py Fri Feb 28 18:09:34 2020 -0500 +++ b/iedb_api.py Tue Apr 07 23:20:35 2020 -0400 @@ -27,8 +27,7 @@ 'processing': processing_methods, 'mhcnp': mhcnp_methods, 'bcell': bcell_methods} -all_methods = set(mhci_methods + mhcii_methods + - mhcnp_methods + bcell_methods) +all_methods = set(mhci_methods + mhcii_methods + mhcnp_methods + bcell_methods) prediction_lengths = {'mhci': range(8, 16), 'mhcii': range(11, 31), 'processing': range(8, 15), @@ -158,7 +157,7 @@ parser.add_argument('-l', '--length', action="append", default=[], - help='lengths for which to make predictions, ' + + help='lengths for which to make predictions, ' '1 per allele') parser.add_argument('-w', '--window_size', type=int, @@ -166,7 +165,7 @@ help='window_size for bcell prediction') parser.add_argument('-i', '--input', default=None, - help='Input file for peptide sequences ' + + help='Input file for peptide sequences ' '(fasta or tabular)') parser.add_argument('-c', '--column', default=None, @@ -205,7 +204,7 @@ warn_err('-a allele or -A allelefile required\n', exit_code=1) if not (args.sequence or args.input): - warn_err('NO Sequences given: ' + + warn_err('NO Sequences given: ' 'either -s sequence or -i input_file is required\n', exit_code=1)