UNPKG

seqparse

Version:

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

9 lines (8 loc) 349 B
import { ParseOptions, Seq } from "."; /** * Get a remote sequence from NCBI or the iGEM registry. */ declare const _default: (accession: string, options?: ParseOptions) => Promise<Seq>; export default _default; /** returns whether the passed ID is an accession in iGEM or NCBI */ export declare const isAccession: (accession: string) => boolean;