Skip to content

Commit 4cb1a9f

Browse files
committed
Fix lofreq args
1 parent e172313 commit 4cb1a9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/LofreqAnalysis.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ public File execute(File input, File outputVcf, File fasta, @Nullable Integer th
150150
args.add(fasta.getPath());
151151

152152
args.add("-o");
153-
args.add(input.getPath());
154-
155153
args.add(outputVcf.getPath());
156154

155+
args.add(input.getPath());
156+
157157
execute(args);
158158

159159
if (!outputVcf.exists())

0 commit comments

Comments
 (0)