Skip to content
Snippets Groups Projects
Commit ae5fa3c2 authored by nina.marthe_ird.fr's avatar nina.marthe_ird.fr
Browse files

added default values to some arguments

parent e8adc0bb
No related branches found
No related tags found
No related merge requests found
......@@ -37,9 +37,9 @@ def arg():
parser.add_argument('-aln','--alignment',help="output the alignment of the transfered features",action='store_true')
# annotation transfer options
parser.add_argument('-id', '--identity', metavar="N", type=int, help="minimum identity percentage required for the feature to be transfered")
parser.add_argument('-cov', '--coverage', metavar="N", type=int, help="minimum coverage percentage required for the feature to be transfered")
parser.add_argument('-diff', '--max_difference', metavar="N", type=int, help="maximum difference accepted for the feature to be transfered (transfer rejected if the feature size on the target genome is N times bigger or smaller than on the source genome)")
parser.add_argument('-id', '--identity', metavar="N", type=int, default=80, help="minimum identity percentage required for the feature to be transfered")
parser.add_argument('-cov', '--coverage', metavar="N", type=int, default=80, help="minimum coverage percentage required for the feature to be transfered")
parser.add_argument('-diff', '--max_difference', metavar="N", type=int, default=0, help="maximum difference accepted for the feature to be transfered (transfer rejected if the feature size on the target genome is N times bigger or smaller than on the source genome)")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment