Skip to content

Instantly share code, notes, and snippets.

@hubgit
Created September 18, 2021 18:39
Show Gist options
  • Save hubgit/ee2572fc67778a045fe8ccb11d7ef23d to your computer and use it in GitHub Desktop.
Save hubgit/ee2572fc67778a045fe8ccb11d7ef23d to your computer and use it in GitHub Desktop.
import biomsa from 'biomsa'
import fetch from 'node-fetch'
const sequence = async (id) => {
const params = new URLSearchParams({
db: 'nuccore',
retmode: 'text',
rettype: 'fasta',
id,
})
const url =
'http://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?' + params
const response = await fetch(url)
const text = await response.text()
return text.split('\n').slice(1).join('')
}
const sequences = [
await sequence('383081734'),
await sequence('12175745'),
await sequence('1842094200'),
]
const result = await biomsa.align(sequences)
console.log(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment