Skip to content

Commit f9b761c

Browse files
Merge pull request #316 from databio/dev
0.12.5 Release
2 parents 934fe52 + f0ff446 commit f9b761c

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

docs/changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change log
22
All notable changes to this project will be documented in this file.
33

4+
## [0.12.5] -- 2025-09-23
5+
- Fix tutorial typos.
6+
47
## [0.12.4] -- 2025-03-24
58
- fix for issue [310](https://github.com/databio/pepatac/issues/310)
69

docs/run-bulker.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ git clone https://github.com/databio/pepatac.git
1818
```
1919

2020
### 2. Install python package requirements
21-
`pip install -r /pepatac/requirements.txt`
21+
22+
```console
23+
pip install -r pepatac/requirements.txt
24+
```
2225

2326
### 3. Get genome assets
2427

docs/tutorial.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ cd ../tools/pepatac/
185185
```
186186
Now, we'll use `looper` to run the sample locally. Make sure you've installed `looper` already (e.g. `pip install --user --upgrade looper`).
187187
```console
188-
looper run examples/tutorial/tutorial_refgenie.yaml
188+
looper run -c examples/tutorial/.looper_tutorial_refgenie.yaml
189189
```
190190
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.
191191

@@ -194,7 +194,7 @@ After the pipeline is finished, we can look through the output directory togethe
194194
## 6: Use `looper` to run the project level pipeline
195195
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:
196196
```console
197-
looper runp examples/tutorial/tutorial_refgenie.yaml
197+
looper runp -c examples/tutorial/.looper_tutorial_refgenie.yaml
198198
```
199199
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.
200200

@@ -205,7 +205,7 @@ Let's take full advantage of `looper` and generate a pipeline `HTML` report that
205205

206206
Using our same configuration file we used to run the samples through the pipeline, we'll now employ the `report` function of `looper`.
207207
```console
208-
looper report examples/tutorial/tutorial_refgenie.yaml
208+
looper report -c examples/tutorial/.looper_tutorial_refgenie.yaml
209209
```
210210
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.
211211
```console
@@ -377,7 +377,7 @@ cd ../tools/pepatac/
377377
```
378378
Now, we'll use `looper` to run the sample locally.
379379
```console
380-
looper run --looper-config examples/tutorial/.looper_tutorial_refgenie.yaml
380+
looper run -c examples/tutorial/.looper_tutorial_refgenie.yaml
381381
```
382382
Note: if using Looper<1.5.0, the run method is via:
383383
```console
@@ -392,11 +392,11 @@ After the pipeline is finished, we can look through the output directory togethe
392392
## 6: Use `looper` to run the project level pipeline
393393
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:
394394
```console
395-
looper runp --looper-config examples/tutorial/.looper_tutorial_refgenie.yaml
395+
looper runp -c examples/tutorial/.looper_tutorial_refgenie.yaml
396396
```
397397
Note: if using Looper<1.5.0, the run method is via:
398398
```console
399-
looper runp examples/tutorial/tutorial_refgenie.yaml
399+
looper runp -c examples/tutorial/.looper_tutorial_refgenie.yaml
400400
```
401401
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.
402402

@@ -406,7 +406,7 @@ Let's take full advantage of `looper` and generate a pipeline `HTML` report that
406406

407407
Using our same configuration file we used to run the samples through the pipeline, we'll now employ the `report` function of `looper`.
408408
```console
409-
looper report examples/tutorial/tutorial_refgenie.yaml
409+
looper report -c examples/tutorial/.looper_tutorial_refgenie.yaml
410410
```
411411
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.
412412
```console

pipelines/pepatac.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
__author__ = ["Jin Xu", "Nathan Sheffield", "Jason Smith"]
77
__email__ = "[email protected]"
8-
__version__ = "0.12.4"
8+
9+
__version__ = "0.12.5"
910

1011

1112
from argparse import ArgumentParser

0 commit comments

Comments
 (0)