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

added arguments to say if the gfa has walks of paths

parent 6388a787
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,10 @@ def arg():
parser.add_argument('graph', metavar='graph.gfa', type=argparse.FileType('r'), help='pangenome graph file in GFA format containing the genome that the annotation refers to and the target genome.s')
parser.add_argument('gff', metavar='annotation.gff', type=argparse.FileType('r') ,help='annotation file in GFF format containing the annotations to be transfered')
# graph format
parser.add_argument('-P', '--paths', help="the genomes are embedded in the GFA file as paths", action='store_true')
parser.add_argument('-W', '--walks', help="the genomes are embedded in the GFA file as walks", action='store_true')
# optionnal input file
parser.add_argument('-coord', '--segment_coordinates_path', metavar="path/to/files", type=dir_path, default=".", help="path to the files given by the preprocessing of the graph; if not given the program will do the preprocessing; recommended if the program will run several times")
......
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