You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bin/hotspot3d
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ use TGI::Mutpro::Main::Cluster;
22
22
use TGI::Mutpro::Main::Significance;
23
23
use TGI::Mutpro::Main::Summary;
24
24
use TGI::Mutpro::Main::Visual;
25
+
use TGI::Mutpro::Main::Cluster::Density;
25
26
use TGI::Mutpro::Preprocess::Drugport;
26
27
use TGI::Mutpro::Preprocess::Uppro;
27
28
use TGI::Mutpro::Preprocess::Calpro;
@@ -36,7 +37,7 @@ use TGI::Mutpro::Preprocess::AllPreprocess;
36
37
37
38
my$subCmd = shift;
38
39
## Add module option here
39
-
my%cmds = map{ ($_, 1) } qw( search post visual cluster sigclus summary drugport uppro calpro calroi statis anno trans homo cosmic prior prep help );
40
+
my%cmds = map{ ($_, 1) } qw( search post visual cluster sigclus summary drugport uppro calpro calroi statis anno trans homo cosmic prior prep density help );
40
41
unless (defined$subCmd) { die help_text(); };
41
42
unless (exists$cmds{$subCmd}) {
42
43
warn' Please give valid sub command ! ', "\n";
@@ -61,6 +62,7 @@ SWITCH:{
61
62
$subCmdeq'cosmic' && do { TGI::Mutpro::Preprocess::Cosmic->new(); last SWITCH; };
62
63
$subCmdeq'prior' && do { TGI::Mutpro::Preprocess::Prior->new(); last SWITCH; };
63
64
$subCmdeq'prep' && do { TGI::Mutpro::Preprocess::AllPreprocess->new(); last SWITCH; };
65
+
$subCmdeq'density' && do { TGI::Mutpro::Main::Cluster::Density->new(); last SWITCH; };
64
66
$subCmdeq'help' && do { die help_text(); last SWITCH; };
65
67
}
66
68
subhelp_text {
@@ -92,6 +94,7 @@ Version: $VERSION
92
94
sigclus -- 3) Determine significance of clusters
93
95
summary -- 4) Summarize clusters
94
96
visual -- 5) Visulization of 3D proximity
97
+
density -- 6) Determine mutation-mutation and mutation-drug density-based clusters
0 commit comments