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
...@@ -30,7 +30,7 @@ def get_args(): ...@@ -30,7 +30,7 @@ def get_args():
formatter_class=argparse.RawDescriptionHelpFormatter) formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument('-b', '--bam', parser.add_argument('-b', '--bam',
help="The bam file to run filtering and qc on.", help="The bam file to convert.",
required=True) required=True)
parser.add_argument('-p', '--paired', parser.add_argument('-p', '--paired',
...@@ -116,7 +116,7 @@ def main(): ...@@ -116,7 +116,7 @@ def main():
convert_mapped_pe(bam, bam_basename) convert_mapped_pe(bam, bam_basename)
else: else:
bedse_filename = bam_basename + ".bedse.gz" bedse_filename = bam_basename + ".bedse.gz"
shutil(tag_filename, bedse_filename) shutil.copy(tag_filename, bedse_filename)
if __name__ == '__main__': 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