File tree Expand file tree Collapse file tree 2 files changed +13
-6
lines changed
Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -811,12 +811,13 @@ <h6 class="progressText spinnerC center" style="top: calc(50% - 15px);" >saving
811811 < option value ="euclideanDistance "> Euclidean Distance</ option >
812812 </ optgroup >
813813 < optgroup label ="Experimental Mathematics " id ="expFilter ">
814- < option value ="TF_DE "> TF_DE</ option >
815- < option value ="TF_EXP "> TF_EXP</ option >
816- < option value ="STOP1 follower "> STOP1 target -Ecker Lab</ option >
817- < option value ="TARGETS|upregulated "> TARGETS|upregulated -Jonathan</ option >
818- < option value ="TARGETS|downregulated "> TARGETS|downregulated -Jonathan</ option >
819- < option value ="TARGETS|up|down "> TARGETS|up|down-Jonathan</ option >
814+ <!-- <option value="TF_DE">TF_DE</option>-->
815+ <!-- <option value="TF_EXP">TF_EXP</option>-->
816+ <!-- <option value="STOP1 follower">STOP1 target -Ecker Lab</option>-->
817+ <!-- <option value="TARGETS|upregulated">TARGETS|upregulated -Jonathan</option>-->
818+ <!-- <option value="TARGETS|downregulated">TARGETS|downregulated -Jonathan</option>-->
819+ <!-- <option value="TARGETS|up|down">TARGETS|up|down-Jonathan</option>-->
820+
820821 </ optgroup >
821822 </ select >
822823 </ div >
Original file line number Diff line number Diff line change @@ -335,6 +335,12 @@ function readFilecsv(filename,notSplit) {
335335 } )
336336 globalFilter [ idAll ] = hosts . map ( d => d . genese ) ;
337337 draw_venn ( create_sets_obj_for_venn ( globalFilter ) , '#vennChart' ) ;
338+ d3 . select ( '#expFilter' ) . selectAll ( 'option' )
339+ . data ( Object . keys ( globalFilter ) . filter ( d => d !== idAll ) )
340+ . join ( 'option' )
341+ . attr ( 'value' , d => d )
342+ . text ( d => d ) ;
343+
338344 // if (globalFilter2)
339345 inithostResults ( ) ;
340346 formatService ( true ) ;
You can’t perform that action at this time.
0 commit comments