Skip to content

Commit 49598db

Browse files
committed
bugfixes (minor-no issue tickets)
1 parent af4dce3 commit 49598db

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

src/main/java/scriptmanager/cli/Peak_Analysis/SortByDistCLI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class SortByDistCLI implements Callable<Integer> {
4040
private Long downstreamBound = null;
4141
@Option(names = {"-m", "--match-strand"}, description = "only check peaks with strand matching reference" )
4242
private boolean matchStrand = false;
43-
@Option(names = {"-z", "--compression"}, description = "Output compressed GFF file" )
43+
@Option(names = {"-z", "--gzip"}, description = "gzip output (default=false)" )
4444
private boolean gzOutput = false;
4545
@Option(names = {"--gff"}, description = "input is GFF format (default=BED format)")
4646
private boolean isGFF = false;

src/main/java/scriptmanager/cli/Read_Analysis/TransposeMatrixCLI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class TransposeMatrixCLI implements Callable<Integer> {
3434
private int startROW = 0;
3535
@Option(names = {"-l", "--start-col"}, description = "Column to start transposing the matrix (zero indexed)")
3636
private int startCOL = 0;
37-
@Option(names = {"-z", "--compression"}, description = "Output compressed file" )
37+
@Option(names = { "-z", "--gzip" }, description = "gzip output (default=false)")
3838
private boolean gzOutput = false;
3939

4040

src/main/java/scriptmanager/window_interface/Sequence_Analysis/RandomizeFASTAWindow.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ public void actionPerformed(ActionEvent arg0) {
203203
chckbxGzipOutput = new JCheckBox("Output GZip");
204204
sl_contentPane.putConstraint(SpringLayout.NORTH, chckbxGzipOutput, 0, SpringLayout.NORTH, btnCalculate);
205205
sl_contentPane.putConstraint(SpringLayout.WEST, chckbxGzipOutput, 30, SpringLayout.WEST, contentPane);
206-
chckbxGzipOutput.setEnabled(false);
207206
contentPane.add(chckbxGzipOutput);
208207

209208
progressBar = new JProgressBar();

0 commit comments

Comments
 (0)