From 13e0d59c2f74d39babe616d74922bb557d1864f9 Mon Sep 17 00:00:00 2001 From: Jonas Almeida Date: Thu, 9 Nov 2023 12:55:37 -0500 Subject: [PATCH] sequence in position --- functions/testFunctions.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/testFunctions.mjs b/functions/testFunctions.mjs index b28929d..b2fabe8 100644 --- a/functions/testFunctions.mjs +++ b/functions/testFunctions.mjs @@ -46,7 +46,7 @@ async function funFetchUCSC(parms){ }) console.log(url) let res = await (await fetch(url)).json() - return `The genomic sequence is ${res.dna.toUpperCase()}` + return `The genomic sequence in that position is ${res.dna.toUpperCase()}` //return JSON.stringify(res) //debugger }