Skip to content

Commit 49aaa55

Browse files
committed
commiting for bugfix
1 parent 6b4f685 commit 49aaa55

File tree

3 files changed

+8
-20
lines changed

3 files changed

+8
-20
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,10 @@ Full documentation is available at gitbooks. [Documentation ](https://metacpan.o
2828

2929
## Run a Workflow with make like utilities
3030

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-
3531
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.
3632

3733
biox run --workflow workflow.yml --auto_deps
3834

39-
Option --make enables both --use\_timestamps and --auto\_deps
40-
41-
biox run --workflow workflow.yml --make
42-
4335
## Create a new workflow
4436

4537
This creates a new workflow with rules rule1, rule2, rule3, with a few variables to help get you started.

lib/BioX/Workflow/Command.pm

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,21 +84,18 @@ Full documentation is available at gitbooks. L<Documentation | https://biosails.
8484
8585
=head2 Run a Workflow with make like utilities
8686
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.
8887
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.
9291
9392
biox run --workflow workflow.yml --auto_deps
9493
95-
Option --make enables both --use_timestamps and --auto_deps
96-
97-
biox run --workflow workflow.yml --make
9894
9995
=head2 Create a new workflow
10096
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.
10299
103100
biox new -w workflow.yml --rules rule1,rule2,rule3
104101
@@ -110,7 +107,8 @@ Add new rules to an existing workflow.
110107
111108
=head2 Check the status of files in your workflow
112109
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.
114112
115113
biox stats -w workflow.yml
116114

lib/BioX/Workflow/Command/stats.pm

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ command_short_description 'Get the status of INPUT/OUTPUT for your workflow';
2929
command_long_description
3030
'If you are unsure on where you are in your workflow, run this step. '
3131
. 'It will give you a breakdown of rules with associated files, '
32-
. 'and whether or not they have been created or modified. '
33-
. 'Automatically select rules with unprocessed or changed files by using '
34-
. '--use_timestamps in your next run.';
32+
. 'and whether or not they have been created or modified. ';
3533

3634
has 'app_log_file' => (
3735
is => 'rw',

0 commit comments

Comments
 (0)