comparison validate_fasta.py @ 14:d00e15139065 draft

planemo upload for repository https://github.com/usegalaxy-au/tools-au commit d490defa32d9c318137d2d781243b392cb14110d-dirty
author galaxy-australia
date Tue, 28 Feb 2023 01:15:42 +0000
parents 3bd420ec162d
children a58f7eb0df2c
comparison
equal deleted inserted replaced
13:c0e71cb2bd1b 14:d00e15139065
1 """Validate input FASTA sequence.""" 1 """Validate input FASTA sequence."""
2 2
3 import argparse
3 import re 4 import re
4 import sys 5 import sys
5 import argparse
6 from typing import List 6 from typing import List
7 7
8 MULTIMER_MAX_SEQUENCE_COUNT = 10 8 MULTIMER_MAX_SEQUENCE_COUNT = 10
9 9
10 10