Skip to content

Commit

Permalink
Merge branch 'porechop_dep' into 'dev'
Browse files Browse the repository at this point in the history
drop porechop dependency

See merge request research/pomoxis!171
  • Loading branch information
mwykes committed Dec 19, 2023
2 parents 9fb7c49 + ab60053 commit d5b7ca3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.3.15] - 2023-12-2023
## [v0.3.15] - 2023-12-18
### Added
- `mini_align` can take a bam as input and optionally retain all or subset of bam tags.
### Changed
- Drop porechop dependency from pypi package due to blocking package uploads. Add warning to the user if porechop is called by `mini_assemble` but does not exist.

## [v0.3.14] - 2023-10-25
### Changed
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ ncls
numpy
pandas
pysam >= 0.15.4
porechop @ git+https://github.com/artic-network/porechop
8 changes: 8 additions & 0 deletions scripts/mini_assemble
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ if $eflag && [[ $ERRCORR = *x ]]; then
fi


if $CHOP && [[ ! $(command -v porechop) ]]; then
echo "-c requires porechop to be installed.";
echo "Run `pip install git+https://github.com/artic-network/porechop` or"
echo "`conda install -c bioconda artic-porechop`"
exit 1;
fi


if $xflag; then
set -x;
fi
Expand Down

0 comments on commit d5b7ca3

Please sign in to comment.