Skip to content

Commit 8136449

Browse files
authored
Merge pull request #66 from gbouras13/pr-65
Pr 65
2 parents 7e4aa88 + 4d7d93d commit 8136449

7 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,6 @@ jobs:
5757
just test-ci
5858
- name: Upload coverage reports to Codecov
5959
uses: codecov/codecov-action@v3
60-
60+
with:
61+
use_node: true
6162

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
uses: pypa/gh-action-pypi-publish@master
4040
with:
4141
user: __token__
42-
password: ${{ secrets.PYPI_TOKEN }}
42+
password: ${{ secrets.PYPI_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ You will then need to install the external dependencies separately, which can be
222222
* [Flye](https://github.com/fenderglass/Flye) >=2.9
223223
* [Unicycler](https://github.com/rrwick/Unicycler) >=0.4.8
224224
* [Minimap2](https://github.com/lh3/minimap2) >=2.11
225-
* [fastp](https://github.com/OpenGene/fastp) >=0.18.0
225+
* [fastp](https://github.com/OpenGene/fastp) >=0.24.2
226226
* [chopper](https://github.com/wdecoster/chopper) >=0.5.0
227227
* [mash](https://github.com/marbl/Mash) >=2.2
228228
* [Raven](https://github.com/lbcb-sci/raven) >=1.8

build/environment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies:
77
- flye >=2.9
88
- unicycler >=0.4.8
99
- minimap2 >=2.11
10-
- fastp >=0.18.0
10+
- fastp >=0.24.2
1111
- chopper >=0.5.0
1212
- mash >=2.2
1313
- raven-assembler >=1.8

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You will then need to install the external dependencies separately, which can be
3131
* [Flye](https://github.com/fenderglass/Flye) >=2.9
3232
* [Unicycler](https://github.com/rrwick/Unicycler) >=0.4.8
3333
* [Minimap2](https://github.com/lh3/minimap2) >=2.11
34-
* [fastp](https://github.com/OpenGene/fastp) >=0.18.0
34+
* [fastp](https://github.com/OpenGene/fastp) >=0.24.2
3535
* [chopper](https://github.com/wdecoster/chopper) >=0.5.0
3636
* [mash](https://github.com/marbl/Mash) >=2.2
3737
* [Raven](https://github.com/lbcb-sci/raven) >=1.8

src/plassembler/utils/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.0
1+
1.7.0

src/plassembler/utils/input_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def check_dependencies():
293293
# fastp
294294
try:
295295
process = sp.Popen(["fastp", "--version"], stdout=sp.PIPE, stderr=sp.PIPE)
296-
_, fastp_out = process.communicate()
296+
fastp_out, _ = process.communicate()
297297
fastp_version = fastp_out.decode()
298298
fastp_version = fastp_version.split("\n")[0].split(" ")[1]
299299
message = f"fastp v{fastp_version} found."

0 commit comments

Comments
 (0)