-
Notifications
You must be signed in to change notification settings - Fork 736
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[propr/propd] fix bug when defining the test configs
- Loading branch information
1 parent
962074c
commit d046847
Showing
6 changed files
with
11 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
process { | ||
withName: 'PROPR_PROPD' { | ||
ext.args = ["--alpha 0.1 --round_digits 5"] | ||
ext.args = {"--alpha 0.1 --round_digits 5"} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
process { | ||
withName: 'PROPR_PROPD' { | ||
ext.args = ["--round_digits 5"] | ||
ext.args = {"--round_digits 5"} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
process { | ||
withName: 'PROPR_PROPD' { | ||
ext.args = ["--permutation 10 --number_of_cutoffs 10 --seed 123 --round_digits 5"] | ||
ext.args = {"--permutation 10 --number_of_cutoffs 10 --seed 123 --round_digits 5"} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
process { | ||
withName: 'PROPR_PROPD' { | ||
ext.args = ["--save_pairwise_full true --save_pairwise true --save_adjacency true --save_rdata true --round_digits 5"] | ||
ext.args = {"--save_pairwise_full true --save_pairwise true --save_adjacency true --save_rdata true --round_digits 5"} | ||
} | ||
} | ||
} |