Skip to content

Commit

Permalink
Merge pull request #127 from PMCC-BioinformaticsCore/release-v0.12.1
Browse files Browse the repository at this point in the history
Release v0.12.1
  • Loading branch information
rlupat committed Jun 13, 2023
2 parents e25e354 + e833098 commit 0b26db8
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.8.17, 3.10.12, 3.11.4]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion janis_bioinformatics/__meta__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "v0.11.4"
__version__ = "v0.12.1"
description = "Bioinformatics tools for Janis; the Pipeline creation helper"
2 changes: 1 addition & 1 deletion janis_bioinformatics/tools/bcftools/view/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def memory(self, hints: Dict[str, Any]):
def inputs(self) -> List[ToolInput]:
return [
ToolInput("file", CompressedVcf(), position=2),
ToolInput("outputFilename", Filename, prefix=">", position=5)
ToolInput("outputFilename", Filename, prefix=">", position=5),
* self.additional_inputs,
]

Expand Down
3 changes: 3 additions & 0 deletions janis_bioinformatics/tools/common/indexfasta.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ def constructor(self):
)
self.output("out_dict", source=self.create_dict, output_name="reference")

def skip_test(cls) -> bool:
return True

def bind_metadata(self):
return ToolMetadata(
contributors=["Michael Franklin"],
Expand Down
3 changes: 3 additions & 0 deletions janis_bioinformatics/tools/pmac/circosplot/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ def cpus(self, hints: Dict[str, Any]):
return val
return 1

def skip_test(cls) -> bool:
return True

def bind_metadata(self) -> ToolMetadata:
from datetime import datetime

Expand Down
2 changes: 2 additions & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import collections
collections.Callable = collections.abc.Callable

0 comments on commit 0b26db8

Please sign in to comment.