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: docs/tutorial.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -185,7 +185,7 @@ cd ../tools/pepatac/
185
185
```
186
186
Now, we'll use `looper` to run the sample locally. Make sure you've installed `looper` already (e.g. `pip install --user --upgrade looper`).
187
187
```console
188
-
looper run examples/tutorial/tutorial_refgenie.yaml
188
+
looper run -c examples/tutorial/.looper_tutorial_refgenie.yaml
189
189
```
190
190
Congratulations! Your first samples should be running through the pipeline now. For both samples to run locally should take 30-50 minutes in total depending on your system.
191
191
@@ -194,7 +194,7 @@ After the pipeline is finished, we can look through the output directory togethe
194
194
## 6: Use `looper` to run the project level pipeline
195
195
The pipeline also includes project level analyses that work on all samples concurrently. This allows for analyses that require output produced by individual sample analysis. We'll run the project analysis much like we run the sample analysis:
This should take about a minute on the tutorial samples and will generate a `summary/` directory containing project level output in the parent project directory. You can [browse the tutorial data](browse_output.md) to see the example output.
200
200
@@ -205,7 +205,7 @@ Let's take full advantage of `looper` and generate a pipeline `HTML` report that
205
205
206
206
Using our same configuration file we used to run the samples through the pipeline, we'll now employ the `report` function of `looper`.
That's it! Easy, right? `Looper` conveniently provides you with the location where the HTML report is produced. You may either open the report with your preferred internet browser using the PATH returned with `looper report`, or we can change directories to the report's location and open it there. Let's go ahead and change into the directory that contains the report.
211
211
```console
@@ -377,7 +377,7 @@ cd ../tools/pepatac/
377
377
```
378
378
Now, we'll use `looper` to run the sample locally.
379
379
```console
380
-
looper run --looper-config examples/tutorial/.looper_tutorial_refgenie.yaml
380
+
looper run -c examples/tutorial/.looper_tutorial_refgenie.yaml
381
381
```
382
382
Note: if using Looper<1.5.0, the run method is via:
383
383
```console
@@ -392,11 +392,11 @@ After the pipeline is finished, we can look through the output directory togethe
392
392
## 6: Use `looper` to run the project level pipeline
393
393
The pipeline also includes project level analyses that work on all samples concurrently. This allows for analyses that require output produced by individual sample analysis. We'll run the project analysis much like we run the sample analysis:
This should take about a minute on the tutorial samples and will generate a `summary/` directory containing project level output in the parent project directory. You can [browse the tutorial data](browse_output.md) to see the example output.
402
402
@@ -406,7 +406,7 @@ Let's take full advantage of `looper` and generate a pipeline `HTML` report that
406
406
407
407
Using our same configuration file we used to run the samples through the pipeline, we'll now employ the `report` function of `looper`.
That's it! Easy, right? `Looper` conveniently provides you with the location where the HTML report is produced. You may either open the report with your preferred internet browser using the PATH returned with `looper report`, or we can change directories to the report's location and open it there. Let's go ahead and change into the directory that contains the report.
0 commit comments