Skip to content

Commit a9c219d

Browse files
committed
update 0.2.19
1 parent 129bc46 commit a9c219d

23 files changed

+7
-6
lines changed

pack.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ pip uninstall -y bamsnap
22
rm -rf build
33
rm -rf ./dist/*
44
python3 setup.py sdist bdist_wheel
5-
pip install ./dist/bamsnap-0.2.18-py3-none-any.whl
5+
pip install ./dist/bamsnap-0.2.19-py3-none-any.whl
66
# twine upload dist/*

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121

2222
setup(name='bamsnap',
23-
version='0.2.18',
23+
version='0.2.19',
2424
url='https://github.com/danielmsk/bamsnap',
2525
license='MIT',
2626
author='Daniel Minseok Kwon',

src/bamsnap.egg-info/PKG-INFO

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: bamsnap
3-
Version: 0.2.18
3+
Version: 0.2.19
44
Summary: A converter from .bam to .png for specific genomic region.
55
Home-page: https://github.com/danielmsk/bamsnap
66
Author: Daniel Minseok Kwon

src/bamsnap/_options.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

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

1516

src/bamsnap/data/conf.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"TITLE":"BAMSNAP",
3-
"VERSION":"0.2.18",
4-
"VERSION_DATE":"2021-02-21",
3+
"VERSION":"0.2.19",
4+
"VERSION_DATE":"2021-03-02",
55
"PROG":"bamsnap",
66
"options":[
77
{"param":"bam", "default":[], "nargs":"*", "action": null, "choices":null, "type":null, "help":"bam or cram file(s)"},
File renamed without changes.

tests/out/test_SV1-7.zip

-25.5 KB
Binary file not shown.
-4.91 KB
Binary file not shown.
-4.85 KB
Binary file not shown.
-4.88 KB
Binary file not shown.
-4.9 KB
Binary file not shown.

tests/out/test_SV1-7_proc1.zip

0 Bytes
Binary file not shown.
-5.29 KB
Binary file not shown.
-4.91 KB
Binary file not shown.
-4.85 KB
Binary file not shown.
-4.88 KB
Binary file not shown.
-4.9 KB
Binary file not shown.

tests/out/test_SV1-7_proc2.zip

0 Bytes
Binary file not shown.
-5.29 KB
Binary file not shown.
-4.91 KB
Binary file not shown.
-4.85 KB
Binary file not shown.
-4.88 KB
Binary file not shown.
-4.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)