You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-8Lines changed: 0 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,18 +28,10 @@ Full documentation is available at gitbooks. [Documentation ](https://metacpan.o
28
28
29
29
## Run a Workflow with make like utilities
30
30
31
-
Using the option --use\_timestamps will select only rules that have INPUT/OUTPUT that does not exist or has been modified since the last log.
32
-
33
-
biox run --workflow workflow.yml --use_timestamps
34
-
35
31
Using the option --auto\_deps will create #HPC deps based on your INPUT/OUTPUTs - use this with caution. It will only work correctly if INPUT/OUTPUT is complete and accurate.
36
32
37
33
biox run --workflow workflow.yml --auto_deps
38
34
39
-
Option --make enables both --use\_timestamps and --auto\_deps
40
-
41
-
biox run --workflow workflow.yml --make
42
-
43
35
## Create a new workflow
44
36
45
37
This creates a new workflow with rules rule1, rule2, rule3, with a few variables to help get you started.
Copy file name to clipboardExpand all lines: lib/BioX/Workflow/Command.pm
+7-9Lines changed: 7 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -84,21 +84,18 @@ Full documentation is available at gitbooks. L<Documentation | https://biosails.
84
84
85
85
=head2Run a Workflow with make like utilities
86
86
87
-
Using the option --use_timestamps will select only rules that have INPUT/OUTPUT that does not exist or has been modified since the last log.
88
87
89
-
biox run --workflow workflow.yml --use_timestamps
90
-
91
-
Using the option --auto_deps will create #HPC deps based on your INPUT/OUTPUTs - use this with caution. It will only work correctly if INPUT/OUTPUT is complete and accurate.
88
+
Using the option --auto_deps will create #HPC deps based on your INPUT/OUTPUTs -
89
+
use this with caution. It will only work correctly if INPUT/OUTPUT is complete
90
+
and accurate.
92
91
93
92
biox run --workflow workflow.yml --auto_deps
94
93
95
-
Option --make enables both --use_timestamps and --auto_deps
96
-
97
-
biox run --workflow workflow.yml --make
98
94
99
95
=head2Create a new workflow
100
96
101
-
This creates a new workflow with rules rule1, rule2, rule3, with a few variables to help get you started.
97
+
This creates a new workflow with rules rule1, rule2, rule3, with a few variables
98
+
to help get you started.
102
99
103
100
biox new -w workflow.yml --rules rule1,rule2,rule3
104
101
@@ -110,7 +107,8 @@ Add new rules to an existing workflow.
110
107
111
108
=head2Check the status of files in your workflow
112
109
113
-
You must have defined INPUT/OUTPUTs to make use of this rule. If you do, biox will output a table with information about your files.
110
+
You must have defined INPUT/OUTPUTs to make use of this rule. If you do, biox
111
+
will output a table with information about your files.
0 commit comments