Skip to content

Commit 1555889

Browse files
committed
Resolving conflict between V1.1.0 and v1.1.1
2 parents 587854c + dd764bd commit 1555889

File tree

8 files changed

+574
-179
lines changed

8 files changed

+574
-179
lines changed

HotSpot3D-1.1.0.tar.gz

8.33 MB
Binary file not shown.

README.md

Lines changed: 29 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,34 @@ Usage
77
-----
88

99
Program: HotSpot3D - 3D mutation proximity analysis program.
10+
<<<<<<< HEAD
1011
Version: V1.1.1
12+
=======
13+
Version: V1.1.0
14+
>>>>>>> dd764bdacc29bfc6ce40fb1cdfdbe3615cd0563f
1115
Author: Beifang Niu, John Wallis, Adam D Scott, Sohini Sengupta, & Amila Weerasinghe
1216

1317
Usage: hotspot3d <command> [options]
1418

1519
Preprocessing
16-
prep -- Run preprocessing steps 2-7
17-
1820
drugport -- 0) Parse drugport database (OPTIONAL)
1921
uppro -- 1) Update proximity files
20-
calroi -- 2) Generate region of interest (ROI) information
21-
statis -- 3) Calculate p_values for pairs of mutations
22-
anno -- 4) Add region of interest (ROI) annotation
23-
trans -- 5) Add transcript annotation
24-
cosmic -- 6) Add COSMIC annotation to proximity file
25-
prior -- 7) Prioritization
22+
prep -- 2) Run preprocessing steps 2-7
23+
calroi -- 2a) Generate region of interest (ROI) information
24+
statis -- 2b) Calculate p_values for pairs of mutations
25+
anno -- 2c) Add region of interest (ROI) annotation
26+
trans -- 2d) Add transcript annotation
27+
cosmic -- 2e) Add COSMIC annotation to proximity file
28+
prior -- 2f) Prioritization
2629

2730
Analysis
28-
29-
search -- 0) 3D mutation proximity searching
30-
post -- 1) Post-processing of 3D proximity searching output
31-
cluster -- 2) Determine mutation-mutation and mutation-drug clusters
32-
sigclus -- 3) Determine significance of clusters (BETA/OPTIONAL)
33-
summary -- 4) Summarize clusters (OPTIONAL)
34-
visual -- 5) Visulization of 3D proximity (OPTIONAL)
31+
main -- Run analysis steps a-f (beta)
32+
search -- a) 3D mutation proximity searching
33+
post -- b) Post-processing of 3D proximity searching output
34+
cluster -- c) Determine mutation-mutation and mutation-drug clusters
35+
sigclus -- d) Determine significance of clusters (BETA/OPTIONAL)
36+
summary -- e) Summarize clusters (OPTIONAL)
37+
visual -- f) Visulization of 3D proximity (OPTIONAL)
3538

3639
Support
3740
-------
@@ -113,6 +116,15 @@ Configure Environment
113116

114117
export PATH=$PATH:~/perl5/bin/
115118

119+
Add cosmic v67 information to 3D proximity results :
120+
121+
mkdir preprocessing_dir/cosmic
122+
123+
cp COSMIC/cosmic_67_for_HotSpot3D_missense_only.tsv.bz2 ./preprocessing_dir/cosmic/
124+
125+
cd ./preprocessing_dir/cosmic/
126+
127+
bzip2 -d cosmic_67_for_HotSpot3D_missense_only.tsv.bz2
116128

117129

118130
Example - Preprocessing
@@ -126,37 +138,9 @@ Example - Preprocessing
126138

127139
hotspot3d uppro --output-dir=preprocessing_dir --pdb-file-dir=pdb_files_dir --drugport-file=drugport_parsing_results_file 1>hotspot3d.uppro.err 2>hotspot3d.uppro.out
128140

129-
3. Calculate protein domain information for each UniProt ID (make sure all uppro jobs have finished!) :
130-
131-
hotspot3d calroi --output-dir=preprocessing_dir
132-
133-
4. Significance determination calculation :
134-
135-
hotspot3d statis --output-dir=preprocessing_dir
136-
137-
5. Add protein domain annotation information to 3D proximity information :
138-
139-
hotspot3d anno --output-dir=preprocessing_dir
140-
141-
6. Choose transcripts based on the alignment between Uniprot sequence and human peptides sequences :
142-
143-
hotspot3d trans --output-dir=preprocessing_dir
144-
145-
7. Add cosmic v67 information to 3D proximity results :
146-
147-
mkdir preprocessing_dir/cosmic
148-
149-
cp COSMIC/cosmic_67_for_HotSpot3D_missense_only.tsv.bz2 ./preprocessing_dir/cosmic/
150-
151-
cd ./preprocessing_dir/cosmic/
152-
153-
bzip2 -d cosmic_67_for_HotSpot3D_missense_only.tsv.bz2
154-
155-
hotspot3d cosmic --output-dir=preprocessing_dir
156-
157-
8. Prioritization :
141+
3. Run automated preprocessing for other measurments and annotations (can alternatively run steps 2a-2f individually) :
158142

159-
hotspot3d prior --output-dir=preprocessing_dir --p-value-cutoff=0.1 --3d-distance-cutoff=20 --linear-distance-cutoff=0.5
143+
hotspot3d prep --output-dir=preprocessing_dir
160144

161145

162146
Example - Analysis

bin/hotspot3d

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
use strict;
99
use warnings;
1010

11+
<<<<<<< HEAD
1112
our $VERSION = 'V1.1.1';
13+
=======
14+
our $VERSION = 'V1.1.0';
15+
>>>>>>> dd764bdacc29bfc6ce40fb1cdfdbe3615cd0563f
1216
1317
use Carp;
1418
use FileHandle;
@@ -22,6 +26,7 @@ use TGI::Mutpro::Main::Cluster;
2226
use TGI::Mutpro::Main::Significance;
2327
use TGI::Mutpro::Main::Summary;
2428
use TGI::Mutpro::Main::Visual;
29+
use TGI::Mutpro::Main::AllMain;
2530
use TGI::Mutpro::Preprocess::Drugport;
2631
use TGI::Mutpro::Preprocess::Uppro;
2732
use TGI::Mutpro::Preprocess::Calpro;
@@ -36,7 +41,7 @@ use TGI::Mutpro::Preprocess::AllPreprocess;
3641
3742
my $subCmd = shift;
3843
## 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 );
4045
unless (defined $subCmd) { die help_text(); };
4146
unless (exists $cmds{$subCmd}) {
4247
warn ' Please give valid sub command ! ', "\n";
@@ -61,6 +66,7 @@ SWITCH:{
6166
$subCmd eq 'cosmic' && do { TGI::Mutpro::Preprocess::Cosmic->new(); last SWITCH; };
6267
$subCmd eq 'prior' && do { TGI::Mutpro::Preprocess::Prior->new(); last SWITCH; };
6368
$subCmd eq 'prep' && do { TGI::Mutpro::Preprocess::AllPreprocess->new(); last SWITCH; };
69+
$subCmd eq 'main' && do { TGI::Mutpro::Main::AllMain->new(); last SWITCH; };
6470
$subCmd eq 'help' && do { die help_text(); last SWITCH; };
6571
}
6672
sub help_text {
@@ -73,25 +79,25 @@ Version: $VERSION
7379
Usage: hotspot3d <command> [options]
7480
7581
Preprocessing
76-
prep -- Run steps 2-7 of preprocessing
77-
7882
drugport -- 0) Parse drugport database (OPTIONAL)
7983
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
8691
8792
Analysis
8893
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)
99+
summary -- e) Summarize clusters
100+
visual -- f) Visulization of 3D proximity
95101
96102
help -- this message
97103

dist.ini

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name = HotSpot3D
2+
<<<<<<< HEAD
23
author = Beifang Niu, John Wallis, Adam D Scott, Sohini Sengupta , & Amila Weerasinghe from McDonnell Genome Institute of Washington University at St. Louis
34
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
49
license = Perl_5
510
copyright_holder = McDonnell Genome Institute at Washington University
611
copyright_year = 2013

0 commit comments

Comments
 (0)