Mercurial > repos > scottx611x > qualimap2_bamqc
changeset 26:241f81fdff98 draft
planemo upload for repository https://github.com/scottx611x/qualimap2 commit dc78b7c4b1780b316ca4aba2be247969ac1100ec-dirty
author | scottx611x |
---|---|
date | Thu, 26 Jul 2018 16:13:38 -0400 |
parents | e985769ec0ac |
children | cfe86907a867 |
files | qualimap_bamqc.py |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/qualimap_bamqc.py Thu Jul 26 16:08:52 2018 -0400 +++ b/qualimap_bamqc.py Thu Jul 26 16:13:38 2018 -0400 @@ -2,6 +2,7 @@ from __future__ import print_function import argparse from subprocess import check_call, CalledProcessError +import os import shutil import sys @@ -38,9 +39,9 @@ ) shutil.make_archive( - 'raw_data_qualimapReport.zip', + 'raw_data_qualimapReport', 'zip', - './raw_data_qualimapReport' + os.path.join(os.get_cwd(), 'raw_data_qualimapReport') )