Published
Edited
Feb 25, 2020
Insert cell
md`# Reading Frame`
Insert cell
sequence = `ATGCCATGGTAAGGATGGTAATATAATGTGCCAGGGTGA`

Insert cell
findORFs(sequence)
Insert cell
function findORFs (DNAsequence) {
console.log(DNAsequence)
console.log(DNAsequence.lastIndexOf('TAA'))

let result = {
1: [],
2: [],
3: []
}
return result
}


}
Insert cell

codons = {
stopCodon: ['TAA,TGA,TAG']
startCodon: ['ATG']
}
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more