UNPKG

seqparse

Version:

Parse sequence files (GenBank, FASTA, SnapGene, SBOL) and accession IDs (NCBI, iGEM) to a common format

10 lines (9 loc) 404 B
import { ParseOptions, Seq } from ".."; /** * Parse a SnapGene file to Seq[] * * this is adapted from https://github.com/TeselaGen/ve-sequence-parsers/blob/master/src/parsers/snapgeneToJson.js * which was adapted from https://github.com/IsaacLuo/SnapGeneFileReader/blob/master/snapgene_reader/snapgene_reader.py */ declare const _default: (options?: ParseOptions) => Seq[]; export default _default;