Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve format of output files #7

Merged
merged 15 commits into from
Jul 29, 2024
4 changes: 0 additions & 4 deletions files/bin/README.txt

This file was deleted.

Binary file removed files/bin/tabix
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class InputValidationCommand implements Callable<Integer> {
private OutputWriter output = null;

public InputValidationCommand() {
VcfFileUtil.setTabixBinary("tabix");

}

public void setFiles(List<String> files) {
Expand Down Expand Up @@ -118,10 +118,6 @@ public void setContactEmail(String contactEmail) {
this.contactEmail = contactEmail;
}

protected void setupTabix(String path) {
VcfFileUtil.setTabixBinary(path);
}

@Override
public Integer call() throws Exception {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,7 @@ public class PrepareTraceCommand implements Callable<Integer> {
private OutputWriter outputWriter = null;

public PrepareTraceCommand() {
VcfFileUtil.setTabixBinary("tabix");
}

protected void setupTabix(String path) {
VcfFileUtil.setTabixBinary(path);
}

@Override
Expand Down Expand Up @@ -93,7 +89,7 @@ public boolean prepareTraceJobs() throws Exception {
task.setVcfFilenames(files);
task.setChainFile(fullPathChainFile);
task.setChunksDir(chunksDir);
task.setExcludedSnpsWriter(null);
task.setStatDir(output);

TaskResults results = runTask(outputWriter, task);

Expand Down
Loading
Loading