Skip to content
Snippets Groups Projects
Commit af91e4af authored by Michael Sandholzer's avatar Michael Sandholzer
Browse files

new file: read_sequencer_package/cli.py

parent 593b926e
No related branches found
No related tags found
1 merge request!6Command Line interface new file: read_sequencer_package/cli.py
import argparse
parser = argparse.ArgumentParser(prog= 'read_sequencer', description='Simulates Sequenceing of a FASTA file.')
parser.add_argument('--file_path',
help='path to FASTA file', action='store_const')
parser.add_argument('--read_length',
help='read length for sequencing', action='store_const')
args = parser.parse_args()
print(args.file_path, args.read_length)
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