Skip to content

Commit

Permalink
update 0.2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmsk committed Mar 1, 2021
1 parent 129bc46 commit a9c219d
Show file tree
Hide file tree
Showing 23 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ pip uninstall -y bamsnap
rm -rf build
rm -rf ./dist/*
python3 setup.py sdist bdist_wheel
pip install ./dist/bamsnap-0.2.18-py3-none-any.whl
pip install ./dist/bamsnap-0.2.19-py3-none-any.whl
# twine upload dist/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}

setup(name='bamsnap',
version='0.2.18',
version='0.2.19',
url='https://github.com/danielmsk/bamsnap',
license='MIT',
author='Daniel Minseok Kwon',
Expand Down
2 changes: 1 addition & 1 deletion src/bamsnap.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: bamsnap
Version: 0.2.18
Version: 0.2.19
Summary: A converter from .bam to .png for specific genomic region.
Home-page: https://github.com/danielmsk/bamsnap
Author: Daniel Minseok Kwon
Expand Down
3 changes: 2 additions & 1 deletion src/bamsnap/_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

def postprocessing_option(opt):
if 'out' in opt.keys() and (('logfile' not in opt.keys()) or (opt['logfile'] == "")):
opt['logfile'] = os.path.join(opt['out'] + '_bamsnap.log')
# opt['logfile'] = os.path.join(opt['out'] + '_bamsnap.log')
opt['logfile'] = ""
return opt


Expand Down
4 changes: 2 additions & 2 deletions src/bamsnap/data/conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"TITLE":"BAMSNAP",
"VERSION":"0.2.18",
"VERSION_DATE":"2021-02-21",
"VERSION":"0.2.19",
"VERSION_DATE":"2021-03-02",
"PROG":"bamsnap",
"options":[
{"param":"bam", "default":[], "nargs":"*", "action": null, "choices":null, "type":null, "help":"bam or cram file(s)"},
Expand Down
File renamed without changes
Binary file removed tests/out/test_SV1-7.zip
Binary file not shown.
Binary file removed tests/out/test_SV1-7/chr1:37775780.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7/chr1:37775783.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7/chr1:37775785.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7/chr1:37775789.png
Binary file not shown.
Binary file modified tests/out/test_SV1-7_proc1.zip
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc1/chr1:37775740.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc1/chr1:37775780.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc1/chr1:37775783.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc1/chr1:37775785.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc1/chr1:37775789.png
Binary file not shown.
Binary file modified tests/out/test_SV1-7_proc2.zip
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc2/chr1:37775740.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc2/chr1:37775780.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc2/chr1:37775783.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc2/chr1:37775785.png
Binary file not shown.
Binary file removed tests/out/test_SV1-7_proc2/chr1:37775789.png
Binary file not shown.

0 comments on commit a9c219d

Please sign in to comment.