@@ -83,6 +83,7 @@ public List<DownloadFile> download() throws IOException, InterruptedException {
83
83
downloadFiles .add (downloadMane (geneFolder ));
84
84
downloadFiles .add (downloadLrg (geneFolder ));
85
85
downloadFiles .add (downloadHgnc (geneFolder ));
86
+ downloadFiles .add (downloadCancerHotspot (geneFolder ));
86
87
downloadFiles .add (downloadDrugData (geneFolder ));
87
88
downloadFiles .addAll (downloadGeneUniprotXref (geneFolder ));
88
89
downloadFiles .add (downloadGeneExpressionAtlas (geneFolder ));
@@ -211,7 +212,7 @@ private DownloadFile downloadLrg(Path geneFolder) throws IOException, Interrupte
211
212
212
213
private DownloadFile downloadHgnc (Path geneFolder ) throws IOException , InterruptedException {
213
214
if (speciesConfiguration .getScientificName ().equals ("Homo sapiens" )) {
214
- logger .info ("Downloading LRG ..." );
215
+ logger .info ("Downloading HGNC ..." );
215
216
String url = configuration .getDownload ().getHgnc ().getHost ();
216
217
saveVersionData (EtlCommons .GENE_DATA , "HGNC_GENE" , configuration .getDownload ().getHgnc ().getVersion (),
217
218
getTimeStamp (), Collections .singletonList (url ), geneFolder .resolve ("hgncVersion.json" ));
@@ -221,6 +222,18 @@ private DownloadFile downloadHgnc(Path geneFolder) throws IOException, Interrupt
221
222
return null ;
222
223
}
223
224
225
+ private DownloadFile downloadCancerHotspot (Path geneFolder ) throws IOException , InterruptedException {
226
+ if (speciesConfiguration .getScientificName ().equals ("Homo sapiens" )) {
227
+ logger .info ("Downloading Cancer Hotspot ..." );
228
+ String url = configuration .getDownload ().getCancerHotspot ().getHost ();
229
+ saveVersionData (EtlCommons .GENE_DATA , "CANCER_HOTSPOT" , configuration .getDownload ().getHgnc ().getVersion (),
230
+ getTimeStamp (), Collections .singletonList (url ), geneFolder .resolve ("cancerHotspotVersion.json" ));
231
+ String [] array = url .split ("/" );
232
+ return downloadFile (url , geneFolder .resolve (array [array .length - 1 ]).toString ());
233
+ }
234
+ return null ;
235
+ }
236
+
224
237
private DownloadFile downloadGO (Path geneFolder ) throws IOException , InterruptedException {
225
238
if (speciesConfiguration .getScientificName ().equals ("Homo sapiens" )) {
226
239
logger .info ("Downloading go annotation..." );
0 commit comments