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());