Skip to content
This repository has been archived by the owner on Jan 17, 2022. It is now read-only.

Commit

Permalink
Rename "clustering" to "grouping"
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Wöste committed Oct 9, 2017
1 parent 431eaed commit eba8d69
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ These parameters are optional and may be omitted using the default values:

| parameter | description | default value |
|-------| ----------- |-----|
| *enableClustering* | Group together calls with same chromosome values and similar breakpoint values | `true` |
| *enableGrouping* | Group together calls with same chromosome values and similar breakpoint values | `true` |
| *breakpointTolerance* | If grouping is enabled, this is the maximum distance where two breakpoints are considered similar. | `3` |
| *csvDelimiter* | Character that delimits csv columns. | `";"` |
| *collectionDelimiter* | A single cell in a csv table may have multiple values. These values are seperated by this character. |`","` |
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/de/imi/marw/viper/api/ViperServerConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ViperServerConfig {
private int igvPort = 9090;
private char csvDelimiter = ';';
private String collectionDelimiter = ",";
private boolean enableClustering = true;
private boolean enableGrouping = true;
private int breakpointTolerance = 3;
private String workDir = "/tmp/viper";
private String fastaRef = "hg19";
Expand Down Expand Up @@ -201,16 +201,16 @@ public void setIgvMaxMemory(int igvMaxMemory) {
}

public boolean isClusteringEnabled() {
return enableClustering;
return enableGrouping;
}

public void setEnableClustering(boolean enableClustering) {
this.enableClustering = enableClustering;
public void setEnableGrouping(boolean enableGrouping) {
this.enableGrouping = enableGrouping;
}

@Override
public String toString() {
return "ViperServerConfig{" + "analysisFile=" + analysisFile + ", viperPort=" + viperPort + ", igvPort=" + igvPort + ", csvDelimiter=" + csvDelimiter + ", collectionDelimiter=" + collectionDelimiter + ", enableClustering=" + enableClustering + ", breakpointTolerance=" + breakpointTolerance + ", workDir=" + workDir + ", fastaRef=" + fastaRef + ", igvJar=" + igvJar + ", bamDir=" + bamDir + ", keepVcfSimple=" + keepVcfSimple + ", excludeRefVcfCalls=" + excludeRefVcfCalls + ", numPrecomputedSnapshots=" + numPrecomputedSnapshots + ", xslxExportWindowSize=" + xslxExportWindowSize + ", viewRange=" + viewRange + ", xvfbDisplay=" + xvfbDisplay + ", xvfbWidth=" + xvfbWidth + ", xvfbHeight=" + xvfbHeight + ", igvMaxMemory=" + igvMaxMemory + '}';
return "ViperServerConfig{" + "analysisFile=" + analysisFile + ", viperPort=" + viperPort + ", igvPort=" + igvPort + ", csvDelimiter=" + csvDelimiter + ", collectionDelimiter=" + collectionDelimiter + ", enableClustering=" + enableGrouping + ", breakpointTolerance=" + breakpointTolerance + ", workDir=" + workDir + ", fastaRef=" + fastaRef + ", igvJar=" + igvJar + ", bamDir=" + bamDir + ", keepVcfSimple=" + keepVcfSimple + ", excludeRefVcfCalls=" + excludeRefVcfCalls + ", numPrecomputedSnapshots=" + numPrecomputedSnapshots + ", xslxExportWindowSize=" + xslxExportWindowSize + ", viewRange=" + viewRange + ", xvfbDisplay=" + xvfbDisplay + ", xvfbWidth=" + xvfbWidth + ", xvfbHeight=" + xvfbHeight + ", igvMaxMemory=" + igvMaxMemory + '}';
}

}

0 comments on commit eba8d69

Please sign in to comment.