From 05b237cc767318fdb458a03e18618082412d69e8 Mon Sep 17 00:00:00 2001 From: l-singh-biomsu <52165734+l-singh-biomsu@users.noreply.github.com> Date: Wed, 30 Oct 2024 18:38:28 +0300 Subject: [PATCH] updated tree_d3.html --- CURATED_SET/html/tree_d3.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CURATED_SET/html/tree_d3.html b/CURATED_SET/html/tree_d3.html index 9eb644d2..1aa70b24 100755 --- a/CURATED_SET/html/tree_d3.html +++ b/CURATED_SET/html/tree_d3.html @@ -309,7 +309,7 @@

Multiple sequence alignment will appear below

var m = msa({ el: rootDiv, - importURL: "../draft_seeds/"+name.replace(/[()]/g, '')+".fasta", + importURL: "../seeds/"+name.replace(/[()]/g, '')+".fasta", // seqs:seqs, all: true, vis: { @@ -400,7 +400,7 @@

Multiple sequence alignment will appear below

//Now we will add consensus with features //first we need to get features and load them. -xhr("../draft_seeds/"+name.replace(/[()]/g, '')+".gff3", function(err, request, body) { +xhr("../seeds/"+name.replace(/[()]/g, '')+".gff3", function(err, request, body) { var features = gffParser.parseSeqs(body); m.seqs.addFeatures(features); @@ -421,7 +421,7 @@

Multiple sequence alignment will appear below

} m.seqs.unshift(seqc); //After that we add a tree - m.importURL("../draft_seeds/"+name.replace(/[()]/g, '')+".tree", function(){ + m.importURL("../seeds/"+name.replace(/[()]/g, '')+".tree", function(){ console.log("tree loaded"); //Trigger SeqLogo from menu, see msa.js:24482 why we need to do this hack! console.log(defMenu.views["40_vis"]._nodes[3].callback());