From 2272e54d103f5043d04c81cbf138958d81656939 Mon Sep 17 00:00:00 2001 From: Jonas Almeida Date: Tue, 6 Feb 2024 11:09:03 -0500 Subject: [PATCH] Update funFetchUCSC.js --- functions/funFetchUCSC.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/functions/funFetchUCSC.js b/functions/funFetchUCSC.js index ff8d033..bd913a4 100644 --- a/functions/funFetchUCSC.js +++ b/functions/funFetchUCSC.js @@ -18,7 +18,5 @@ async function funFetchUCSC(parms){ }) console.log(url) let res = await (await fetch(url)).json() - return `The genomic sequence in that position is ${res.dna.toUpperCase()}` - //return JSON.stringify(res) - //debugger + return res.dna.toUpperCase() }