Created
September 18, 2021 18:39
-
-
Save hubgit/ee2572fc67778a045fe8ccb11d7ef23d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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