Skip to content

Commit

Permalink
Merge pull request #336 from gagneurlab/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
nickhsmith committed Jul 1, 2022
2 parents 35a3cdd + 8f5a584 commit e790672
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Michaela Müller'

# The full version, including alpha/beta/rc tags
release_ = '1.2.0'
release_ = '1.2.1'



Expand Down
2 changes: 1 addition & 1 deletion drop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
from . import utils
from . import demo

__version__ = "1.2.0"
__version__ = "1.2.1"

2 changes: 1 addition & 1 deletion drop/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

@click.group()
@click_log.simple_verbosity_option(logger)
@click.version_option('1.2.0',prog_name='drop')
@click.version_option('1.2.1',prog_name='drop')


def main():
Expand Down
4 changes: 3 additions & 1 deletion drop/download_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ set -e
resource_url="https://github.com/nickhsmith/drop_demo_data/archive/refs/heads/main.zip"
tmpdir="$(dirname "$(mktemp)")"
wget -nc -P $tmpdir $resource_url
if [ -z "$(ls Data)" ]; then

# if the directory Data does not exist
if [ ! -d "Data" ]; then
unzip "$tmpdir/main.zip"
mv drop_demo_data-main/Data Data
rm -rf drop_demo_data-main
Expand Down
2 changes: 2 additions & 0 deletions drop/template/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ rule publish_local:
shell: "rsync -Ort {config[htmlOutputPath]} {config[webDir]}"

rule prepFasta_fa:
priority: 1
input:
"{path_to_ref}.fa"
output:
Expand All @@ -85,6 +86,7 @@ rule prepFasta_fa:
"""

rule prepFasta_fasta:
priority: 1
input:
"{path_to_ref}.fasta"
output:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.0
current_version = 1.2.1

commit = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setuptools.setup(
name="drop",
version="1.2.0",
version="1.2.1",

author="Vicente A. Yépez, Michaela Müller, Nicholas H. Smith, Daniela Klaproth-Andrade, Luise Schuller, Ines Scheller, Christian Mertes <mertes@in.tum.de>, Julien Gagneur <gagneur@in.tum.de>",
author_email="yepez@in.tum.de",
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def demo_dir(tmpdir_factory):
assert "demo project created" in r.stderr
yield run_dir
LOGGER.info("\n remove demo directory")
#run_dir.remove()
run_dir.remove()


@pytest.fixture(scope="session", autouse=True)
Expand Down

0 comments on commit e790672

Please sign in to comment.