FastaUtils: {
detectFormat: (data: string) => boolean;
countSequences: (data: string) => number;
extractIds: (data: string) => string[];
calculateStats: (
sequence: string,
) => {
length: number;
gcContent: number;
composition: Record<string, number>;
};
} = ...
Type Declaration
countSequences: (data: string) => number
calculateStats: (
sequence: string,
) => {
length: number;
gcContent: number;
composition: Record<string, number>;
}
Utility functions for FASTA format