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','-e',required=True,help='File to store enumerated headers in tsv format')
parser=argparse.ArgumentParser(description='Replace enumerated id of sequences with original identifier. Caution: The original json file gets replaced in the process.')