parser=argparse.ArgumentParser(description='Replaces fasta headers with unique numbers and saves a dictionary of both in tsv format')
parser=argparse.ArgumentParser(description='Replaces fasta headers with unique numbers and saves a dictionary of both in tsv format. Caution: The original fasta file gets replaced in the process.')
parser.add_argument('--fasta','-f',required=True,help='The fasta file')
parser.add_argument('--enum-headers-dir','-d',default='.',help='Target directory for headers dictionary file enum_headers.tsv')
parser=argparse.ArgumentParser(description='Replace enumerated id of sequences with original identifier')
parser=argparse.ArgumentParser(description='Replace enumerated id of sequences with original identifier. Caution: The original json file gets replaced in the process.')