Skip to content

Commit

Permalink
tools: rvtests implentation, #125
Browse files Browse the repository at this point in the history
  • Loading branch information
jtarraga committed Jan 23, 2017
1 parent 0110fe6 commit c7ffbf2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@ public class VariantRvTestsCLITest {
Path confPath;

private void init() throws URISyntaxException {
inPath = Paths.get("/home/jtarraga/data/vcf/skat/example.vcf.avro");
outPath = Paths.get("/home/jtarraga/data/vcf/skat/out");
confPath = Paths.get("/home/jtarraga/data/vcf/skat/skat.params");
String root = "/home/jtarraga/data100/vcf/rvtest-skat/spark";
// String root = "/home/jtarraga/data/vcf/skat/";
inPath = Paths.get(root + "/example.vcf.avro");
outPath = Paths.get(root + "/out");
confPath = Paths.get(root + "/skat.params");
}

// @Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public class RvTestsAnalysis {
private String outDirname;
private String confFilename;

private final String RVTEST_BIN = "/home/jtarraga/softs/rvtests/executable/rvtest";
private final String BGZIP_BIN = "/home/joaquin/softs/htslib/bgzip";
private final String TABIX_BIN = "/home/joaquin/softs/htslib/tabix";
private final String RVTEST_BIN = "/home/jtarraga/soft/rvtests/executable/rvtest";
private final String BGZIP_BIN = "/usr/bin/bgzip"; //"/home/joaquin/softs/htslib/bgzip";
private final String TABIX_BIN = "/usr/bin/tabix"; //"/home/joaquin/softs/htslib/tabix";

public RvTestsAnalysis(String inFilename, String outDirname, String confFilename) {
this.inFilename = inFilename;
Expand Down

0 comments on commit c7ffbf2

Please sign in to comment.