Skip to content

Commit

Permalink
merge branch dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mariabernard committed Jun 30, 2017
2 parents e3bd3c6 + 623d266 commit 14f5705
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/phylo_manova/r_manova.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_version(self):
prevent_shell_injections(args)
# Process
# keep quote around varExp
idx=sys.argv.index("--varExp")+1
idx=sys.argv.index("-v")+1 if "-v" in sys.argv else sys.argv.index("--varExp")+1
cmd = " ".join(sys.argv[0:idx]) + " \"" + sys.argv[idx] + "\" "
if idx != len(sys.argv):
cmd += " ".join(sys.argv[idx+1:])
Expand Down
2 changes: 1 addition & 1 deletion tools/phylo_manova/r_manova.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<tool name="FROGSSTAT Phyloseq Multivariate Analysis Of Variance" id="FROGSSTAT_Phyloseq_Multivariate_Analysis_Of_Variance" version="1.0.0">
<command interpreter="python">r_manova.py
--data $data
--varExp \"$varExp\"
--varExp "$varExp"
--distance-matrix $method
--html $html
</command>
Expand Down

0 comments on commit 14f5705

Please sign in to comment.