Skip to content

Commit

Permalink
v0.1.4: fix remote CWL builds with vcfanno inputs
Browse files Browse the repository at this point in the history
Make use of specific configuration (versus filesystem) keys in
general input files.

New release also includes python3 fixes.
  • Loading branch information
chapmanb committed Feb 10, 2019
1 parent c107a40 commit d692e01
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions bcbiovm/arvados/retriever.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ def add_remotes(items, config):
"""
if config.get(KEY):
config = config[KEY]
elif config.get(CONFIG_KEY):
config = config[CONFIG_KEY]
find_fn = _find_file(config)
return sret.fill_remote(items, find_fn, _is_remote)

Expand Down
2 changes: 2 additions & 0 deletions bcbiovm/dnanexus/retriever.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ def add_remotes(items, config):
"""
if config.get(KEY):
config = config[KEY]
elif config.get(CONFIG_KEY):
config = config[CONFIG_KEY]
find_fn = _find_file(config)
return sret.fill_remote(items, find_fn, _is_remote)

Expand Down
2 changes: 2 additions & 0 deletions bcbiovm/sbgenomics/retriever.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,8 @@ def add_remotes(items, config):
"""
if config.get(KEY):
config = config[KEY]
elif config.get(CONFIG_KEY):
config = config[CONFIG_KEY]
find_fn = _find_file(config)
return sret.fill_remote(items, find_fn, _is_remote)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
from setuptools import setup, find_packages

version = "0.1.3"
version = "0.1.4"

def write_version_py():
version_py = os.path.join(os.path.dirname(__file__), "bcbiovm", "version.py")
Expand Down

0 comments on commit d692e01

Please sign in to comment.