Skip to content

Commit a7ca5ef

Browse files
Merge pull request #234 from databio/dev
v 0.14.5 release
2 parents 7c0e129 + 08aa334 commit a7ca5ef

30 files changed

+64
-30
lines changed

docs/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
4+
## [0.14.5] -- 2025-09-22
5+
### Changed
6+
- Remove veracitools dependency [#233](https://github.com/databio/pypiper/issues/233)
7+
38
## [0.14.4] -- 2025-02-25
49
### Changed
510
- Fixed warnings for Python >3.12

init_interactive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Create dummy PipelineManager and NGSTk instance for interactive session. """
1+
"""Create dummy PipelineManager and NGSTk instance for interactive session."""
22

33
import os
44

pypiper/_version.py

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

pypiper/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Pypiper constants. """
1+
"""Pypiper constants."""
22

33
CHECKPOINT_EXTENSION = ".checkpoint"
44
DEFAULT_SAMPLE_NAME = "DEFAULT_SAMPLE_NAME"

pypiper/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Custom pypiper exceptions """
1+
"""Custom pypiper exceptions"""
22

33
__author__ = "Vince Reuter"
44
__email__ = "vreuter@virginia.edu"

pypiper/flags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Status flags """
1+
"""Status flags"""
22

33
# TODO: ultimately, these should migrate to pep.
44
RUN_FLAG = "running"

pypiper/folder_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Context manager for temporarily changing folder. """
1+
"""Context manager for temporarily changing folder."""
22

33
import os
44

pypiper/ngstk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Broadly applicable NGS processing/analysis functionality """
1+
"""Broadly applicable NGS processing/analysis functionality"""
22

33
import errno
44
import os

pypiper/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Pipeline base class """
1+
"""Pipeline base class"""
22

33
import abc
44
import glob

pypiper/stage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Conceptualize a pipeline processing phase/stage. """
1+
"""Conceptualize a pipeline processing phase/stage."""
22

33
import copy
44

0 commit comments

Comments
 (0)