bioseq-ts
TypeScript icon, indicating that this package has built-in type declarations

0.3.3-0 • Public • Published

npm License: CC0-1.0 pipeline status coverage report

Biological Sequence in Javascript written in Typescript.

Note: This package is under development and is in alpha. I build it for myself and others, but the functionalities appear as I need them. Please, use it at your own risk.

Note2: That being said, please reach out to contribute, suggest changes and submit issues. Cheers.

Usage

This package can be used by researchers at different levels of programming skills.

Beginner

BioSeqTS provides high-level functionality if you are just starting to play with bioinformatics and just want a library that reads FASTA files for example.

We can easily accomplish that by:

import fs from 'fs'
import { FastaUtils } from 'bioseq-ts'
 
const sequenceData = fs.readFileSync('myFile.fa')
 
const fu = new FastaUtils()
const bioSeqSet = fu.parse(sequenceData)
 
console.log(seqs)
/*
BioSeqSet {
  set: [
    BioSeq { seq: 'AAAACCC', header: 'seq1' },
    BioSeq { seq: 'DDDFFFF', header: 'seq2' },
    ...
  ],
  partitionTable: [ [ 1, 7 ] ] }
}
*/
 

But once we load these as BioSeq objects in a BioSeqSet, it packs a lot of other goodies.

For example, it is easy to write these sequences again in fasta format:

const fu = new FastaUtils()
const fasta = fu.write(bioSeqSet)
 
console.log(fasta)
/*
>seq1
AAAACCC
>seq2
DDDFFFF
*/

Intermediate

Let's say we want to concatenate several Fasta files. Assuming we already read the file content (string) into an array, let's write a simple function to concatenate the alignment.

import { BioSeq, BioSeqSet, FastaUtils } from 'bioseq-ts';
 
const concatMultipleFasta = (ListOfRawSequencesInFasta: string[]): string => {
  const seqRefRaw = ListOfRawSequencesInFasta.shift();
  const fastaU = new FastaUtils();
  let concatenated = fastaU.parse(seqRefRaw);
  ListOfRawSequencesInFasta.forEach(rawSequencesInFasta => {
    const fu = new FastaUtils();
    const setToAdd = fu.parse(rawSequencesInFasta);
    concatenated = concatenated.concatSequences(setToAdd);
  });
  return fastaU.write(concatenated);
};
 
/*
This function returns a fasta formatted string with the concatenated alignment keeping the header of the first file.
*/
 

Advanced

TODO

Install

npm install bioseq-ts

Developer's Documentation

If you even more curious about the logic behind some of the choices we made here, please check it out the dev README

... to be continued.

Written with ❤ in Typescript.

Package Sidebar

Install

npm i bioseq-ts

Weekly Downloads

92

Version

0.3.3-0

License

CC0-1.0

Unpacked Size

40.8 kB

Total Files

27

Last publish

Collaborators

  • daviortega