-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
INFRA-541 Combine main methods for Docker
- Loading branch information
Ned Leitch
committed
Sep 6, 2024
1 parent
b7db00a
commit 26f4032
Showing
3 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
cuppa/src/main/java/com/hartwig/hmftools/cup/cli/PrepPlusPredictionMain.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.hartwig.hmftools.cup.cli; | ||
|
||
import com.hartwig.hmftools.cup.prep.CuppaDataPrep; | ||
|
||
public class PrepPlusPredictionMain { | ||
public static void main(String[] args) { | ||
try { | ||
CuppaDataPrep.main(args); | ||
PredictionRunner.main(args); | ||
System.exit(0); | ||
} catch (Exception e) { | ||
e.printStackTrace(); | ||
System.exit(1); | ||
} | ||
} | ||
} |