Example #1
0
def _add_run_random_fasta_file(p):
    U.add_debug_option(p)
    p.add_argument('--max-records',
                   type=int,
                   default=25000,
                   help="Max number of Fasta record to write.")
    U.add_fasta_output(p)
    return p
Example #2
0
def _add_run_fasta_filter_options(p):
    U.add_debug_option(p)
    p.add_argument('--min-length',
                   type=int,
                   default=150,
                   help='Min Length of Sequence to filter')
    U.add_fasta_input(p)
    U.add_fasta_output(p)
    return p
Example #3
0
def _add_run_fasta_filter_options(p):
    U.add_debug_option(p)
    p.add_argument('--min-length', type=int, default=150, help='Min Length of Sequence to filter')
    U.add_fasta_input(p)
    U.add_fasta_output(p)
    return p
Example #4
0
def _add_run_random_fasta_file(p):
    U.add_debug_option(p)
    p.add_argument('--max-records', type=int, default=25000, help="Max number of Fasta record to write.")
    U.add_fasta_output(p)
    return p