Skip to content

Commit

Permalink
Merge pull request #13 from GertjanBisschop/restructure
Browse files Browse the repository at this point in the history
restructure
  • Loading branch information
DRL committed Sep 12, 2023
2 parents 93e9e0f + 2e215f9 commit d111d8d
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion cli/interface.py → gimbleprep/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from timeit import default_timer as timer

RUNNER_BY_MODULE = {
'preprocess': 'cli.preprocess',
'preprocess': 'gimbleprep.preprocess',
}
MODULES = RUNNER_BY_MODULE.keys()

Expand Down
2 changes: 1 addition & 1 deletion cli/preprocess.py → gimbleprep/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
-h, --help Show this
"""

import lib.runargs
import gimbleprep.runargs
import numpy as np
import tempfile
import pathlib
Expand Down
File renamed without changes.
Empty file removed lib/__init__.py
Empty file.
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@

setup(
name='gimbleprep',
version='0.0.2b3',
version='0.0.2b4',
description='Preprocess fasta, bam and vcf files ready to be used by gimble',
url='http://github.com/LohseLab/gimbleprep',
author='Lohse Lab',
author_email='',
license='GPLv3',
packages=["cli", "lib"],
packages=["gimbleprep"],
package_dir={
"": ".",
"cli": "./cli",
"lib": "./lib",
"gimbleprep": "./gimbleprep",
},
install_requires=[
"docopt",
Expand All @@ -29,7 +28,7 @@
],
entry_points={
'console_scripts': [
'gimbleprep = cli.interface:main',
'gimbleprep = gimbleprep.interface:main',
]
}
)

0 comments on commit d111d8d

Please sign in to comment.