Skip to content

Commit 832916d

Browse files
Merge pull request #125 from databio/dev
Release 0.7.3
2 parents 36a309e + 8f44f15 commit 832916d

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

bedboss/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.2"
1+
__version__ = "0.7.3"

bedboss/bedboss.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,8 @@ def reprocess_all(
489489
"""
490490
Run bedboss pipeline for all unprocessed beds in the bedbase
491491
492+
Currently only beds with genomes hg19, hg38, and mm10 are processed.
493+
492494
:param bedbase_config: bedbase configuration file path
493495
:param output_folder: output folder of the pipeline
494496
:param limit: limit of the number of beds to process
@@ -520,7 +522,9 @@ def reprocess_all(
520522
else:
521523
raise BedBossException("Incorrect bedbase_config type. Exiting...")
522524

523-
unprocessed_beds = bbagent.bed.get_unprocessed(limit=limit)
525+
unprocessed_beds = bbagent.bed.get_unprocessed(
526+
limit=limit, genome=["hg38", "hg19", "mm10"]
527+
)
524528

525529
bbclient = BBClient()
526530
failed_samples = []

bedboss/cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,9 @@ def run_pep(
232232
pm.stop_pipeline()
233233

234234

235-
@app.command(help="Run unprocessed files, or reprocess them")
235+
@app.command(
236+
help="Run unprocessed files or reprocess them. Currently, only hg38, hg19, and mm10 genomes are supported."
237+
)
236238
def reprocess_all(
237239
bedbase_config: str = typer.Option(
238240
...,

docs/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.
44

5+
6+
# [0.7.3] - 2025-06-28
7+
## Added:
8+
- Added filter for rerunning unprocessed bed files based on genome
9+
10+
511
# [0.7.2] - 2025-06-21
612
## Changed:
713
- Updated path to the bigbed output folder

requirements/requirements-all.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ peppy>=0.40.7
55
yacman>=0.8.4
66
requests>=2.28.2
77
piper>=v0.14.3
8-
bbconf>=0.11.1
8+
bbconf>=0.11.3
99
# bbconf @ git+https://github.com/databio/bbconf.git@new_bed_compilance#egg=bbconf
1010
refgenconf>=0.12.2
1111
pandas>=2.0.0

0 commit comments

Comments
 (0)