Skip to content

Commit

Permalink
Merge pull request #34 from vinisalazar/dev
Browse files Browse the repository at this point in the history
Patch v0.1.18
  • Loading branch information
vinisalazar committed Nov 7, 2020
2 parents d16aa7e + 70c2d88 commit e2121c3
Show file tree
Hide file tree
Showing 30 changed files with 34 additions and 31 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,9 @@
* .describe []
* .write_paths_to_file, .copy_files_to_dir(), .link_files_to_dir()

### v0.1.18a
* Patch file deserializer bug [x]

### v0.1.18
* Add support for ProvStore API (#23) [x]
* Add subparsers for CLI commands [x]
Expand Down
2 changes: 1 addition & 1 deletion bioprov/__init__.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/bioprov
Expand Up @@ -3,7 +3,7 @@ __author__ = "Vini Salazar"
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"

"""
Executable that goes in $PATH. Code for the command-line is on the bioprov.py module.
Expand Down
2 changes: 1 addition & 1 deletion bioprov/bioprov.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"

"""
BioProv command-line application. This module holds the main executable.
Expand Down
2 changes: 1 addition & 1 deletion bioprov/data/__init__.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/programs/__init__.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


from .programs import prodigal, diamond, blastn, blastp, prokka, kaiju, kaiju2table
2 changes: 1 addition & 1 deletion bioprov/programs/programs.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/src/__init__.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/src/config.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
4 changes: 2 additions & 2 deletions bioprov/src/files.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down Expand Up @@ -489,5 +489,5 @@ def deserialize_files_dict(files_dict):
try:
setattr(files_dict[tag], attr_, value_)
except AttributeError:
breakpoint()
pass
return files_dict
2 changes: 1 addition & 1 deletion bioprov/src/main.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"

"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/src/prov.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"

"""
Module containing base provenance attributes.
Expand Down
2 changes: 1 addition & 1 deletion bioprov/src/workflow.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"

"""
Contains the Workflow class and related functions.
Expand Down
2 changes: 1 addition & 1 deletion bioprov/tests/__init__.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/tests/test_bioprov_imports.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/tests/test_bioprov_integration.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/tests/test_bioprov_programs.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/tests/test_bioprov_workflows.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/tests/test_src_config.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/tests/test_src_file.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/tests/test_src_main.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/tests/test_src_prov.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/utils.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"

"""
Helper functions.
Expand Down
2 changes: 1 addition & 1 deletion bioprov/workflows/__init__.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


from .genome_annotation import genome_annotation
Expand Down
2 changes: 1 addition & 1 deletion bioprov/workflows/blastn.py
Expand Up @@ -3,7 +3,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"

"""
BLAST nucleotide alignment workflow
Expand Down
2 changes: 1 addition & 1 deletion bioprov/workflows/genome_annotation.py
Expand Up @@ -3,7 +3,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"

"""
Genome annotation workflow module.
Expand Down
2 changes: 1 addition & 1 deletion bioprov/workflows/kaiju.py
Expand Up @@ -3,7 +3,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion bioprov/workflows/wf_parser.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


"""
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -24,7 +24,7 @@
author = "Vini Salazar"

# The full version, including alpha/beta/rc tags
release = "0.1.18"
release = "0.1.18a"


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -2,7 +2,7 @@
__license__ = "MIT"
__maintainer__ = "Vini Salazar"
__url__ = "https://github.com/vinisalazar/bioprov"
__version__ = "0.1.18"
__version__ = "0.1.18a"


import setuptools
Expand All @@ -12,7 +12,7 @@

setuptools.setup(
name="bioprov",
version="0.1.18",
version="0.1.18a",
author="Vini Salazar",
author_email="viniws@gmail.com",
description="BioProv - Provenance capture for bioinformatics workflows",
Expand Down

0 comments on commit e2121c3

Please sign in to comment.