from bioconvert.gfa2fasta import GFA2FASTA
from bioconvert import bioconvert_data
from bioconvert import TempFile

with TempFile(suffix=".fasta") as fh:
    infile = bioconvert_data("test_gfa2fasta_v1.gfa")
    convert = GFA2FASTA(infile, fh.name)
    convert.boxplot_benchmark()