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
+21-15Lines changed: 21 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,11 @@
8
8
use strict;
9
9
use warnings;
10
10
11
+
<<<<<<< HEAD
11
12
our $VERSION = 'V1.1.1';
13
+
=======
14
+
our $VERSION = 'V1.1.0';
15
+
>>>>>>> dd764bdacc29bfc6ce40fb1cdfdbe3615cd0563f
12
16
13
17
use Carp;
14
18
use FileHandle;
@@ -22,6 +26,7 @@ use TGI::Mutpro::Main::Cluster;
22
26
use TGI::Mutpro::Main::Significance;
23
27
use TGI::Mutpro::Main::Summary;
24
28
use TGI::Mutpro::Main::Visual;
29
+
use TGI::Mutpro::Main::AllMain;
25
30
use TGI::Mutpro::Preprocess::Drugport;
26
31
use TGI::Mutpro::Preprocess::Uppro;
27
32
use TGI::Mutpro::Preprocess::Calpro;
@@ -36,7 +41,7 @@ use TGI::Mutpro::Preprocess::AllPreprocess;
36
41
37
42
my $subCmd = shift;
38
43
## 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 density help );
44
+
my %cmds = map{ ($_, 1) } qw( search post visual cluster sigclus summary drugport uppro calpro calroi statis anno trans homo cosmic prior prep main density help );
40
45
unless (defined $subCmd) { die help_text(); };
41
46
unless (exists $cmds{$subCmd}) {
42
47
warn ' Please give valid sub command ! ', "\n";
@@ -61,6 +66,7 @@ SWITCH:{
61
66
$subCmd eq 'cosmic' && do { TGI::Mutpro::Preprocess::Cosmic->new(); last SWITCH; };
62
67
$subCmd eq 'prior' && do { TGI::Mutpro::Preprocess::Prior->new(); last SWITCH; };
63
68
$subCmd eq 'prep' && do { TGI::Mutpro::Preprocess::AllPreprocess->new(); last SWITCH; };
69
+
$subCmd eq 'main' && do { TGI::Mutpro::Main::AllMain->new(); last SWITCH; };
64
70
$subCmd eq 'help' && do { die help_text(); last SWITCH; };
65
71
}
66
72
sub help_text {
@@ -73,25 +79,25 @@ Version: $VERSION
73
79
Usage: hotspot3d <command> [options]
74
80
75
81
Preprocessing
76
-
prep -- Run steps 2-7 of preprocessing
77
-
78
82
drugport -- 0) Parse drugport database (OPTIONAL)
79
83
uppro -- 1) Update proximity files
80
-
calroi -- 2) Generate region of interest (ROI) information
81
-
statis -- 3) Calculate p_values for pairs of mutations
82
-
anno -- 4) Add region of interest (ROI) annotation
83
-
trans -- 5) Add transcript annotation
84
-
cosmic -- 6) Add COSMIC annotation to proximity file
85
-
prior -- 7) Prioritization
84
+
prep -- 2) Run steps 2a-2f of preprocessing
85
+
calroi -- 2a) Generate region of interest (ROI) information
86
+
statis -- 2b) Calculate p_values for pairs of mutations
87
+
anno -- 2c) Add region of interest (ROI) annotation
88
+
trans -- 2d) Add transcript annotation
89
+
cosmic -- 2e) Add COSMIC annotation to proximity file
90
+
prior -- 2f) Prioritization
86
91
87
92
Analysis
88
93
89
-
search -- 0) 3D mutation proximity searching
90
-
post -- 1) Post-processing of 3D proximity searching output
91
-
cluster -- 2) Determine mutation-mutation and mutation-drug clusters
92
-
sigclus -- 3) Determine significance of clusters
93
-
summary -- 4) Summarize clusters
94
-
visual -- 5) Visulization of 3D proximity
94
+
main -- 0) Run steps a-f of analysis (BETA)
95
+
search -- a) 3D mutation proximity searching
96
+
post -- b) Post-processing of 3D proximity searching output
97
+
cluster -- c) Determine mutation-mutation and mutation-drug clusters
98
+
sigclus -- d) Determine significance of clusters (BETA)
Copy file name to clipboardExpand all lines: dist.ini
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,11 @@
1
1
name = HotSpot3D
2
+
<<<<<<< HEAD
2
3
author = Beifang Niu, John Wallis, Adam D Scott, Sohini Sengupta , & Amila Weerasinghe from McDonnell Genome Institute of Washington University at St. Louis
3
4
version = 1.1.1
5
+
=======
6
+
author = Beifang Niu, John Wallis, Adam D Scott, Sohini Sengupta, & Amila Weerasinghe from McDonnell Genome Institute of Washington University at St. Louis
7
+
version = 1.1.0
8
+
>>>>>>> dd764bdacc29bfc6ce40fb1cdfdbe3615cd0563f
4
9
license = Perl_5
5
10
copyright_holder = McDonnell Genome Institute at Washington University
0 commit comments