Skip to content
Snippets Groups Projects
Commit 5435d541 authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Fix output copu.

parent 50a51530
Branches
Tags
No related merge requests found
Pipeline #1104 failed with stage
in 1 hour, 28 minutes, and 15 seconds
......@@ -30,7 +30,7 @@ def get_args():
formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument('-b', '--bam',
help="The bam file to run filtering and qc on.",
help="The bam file to convert.",
required=True)
parser.add_argument('-p', '--paired',
......@@ -116,7 +116,7 @@ def main():
convert_mapped_pe(bam, bam_basename)
else:
bedse_filename = bam_basename + ".bedse.gz"
shutil(tag_filename, bedse_filename)
shutil.copy(tag_filename, bedse_filename)
if __name__ == '__main__':
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment