-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
17 lines (14 loc) · 715 Bytes
/
Main.java
File metadata and controls
17 lines (14 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.company;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
// PreMuSa Creates site only vcf for Mutect2 to call difference in 2 samples from a table. See: https://software.broadinstitute.org/gatk/blog?id=11315
System.out.println("##PreMuSa");
System.out.println("##PreMuSa Creates site only vcf for Mutect2 to call difference in 2 samples from a table.");
System.out.println("##Inputs: table.file outputpath");
System.out.println("##By: M.Schwarz, Kiel 05/2018");
String inputTable = args[0];
String outputPath = args[1];
Worker worker = new Worker(inputTable,outputPath);
}
}