Skip to content
Snippets Groups Projects
Commit ce933c55 authored by BIOPZ-Katsantoni Maria's avatar BIOPZ-Katsantoni Maria
Browse files

Fixed required argument

parent 50ca3c68
No related branches found
No related tags found
1 merge request!31Handle polyA processing in input preparation script
Pipeline #10318 failed
......@@ -34,7 +34,7 @@ def main():
parser = ArgumentParser(description=__doc__,
formatter_class=RawTextHelpFormatter)
parser.add_argument("--genomes_path",
parser.add_argument("genomes_path",
help="Path containing the FASTA and GTF " +
" files for all organisms",
metavar="GENOMES PATH")
......@@ -83,6 +83,7 @@ def main():
parser.add_argument("--trim_polya",
type=int,
choices=[True, False],
default=True,
help="Trim poly-As option")
parser.add_argument("--multimappers",
......
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