Skip to content

Commit

Permalink
resolved #19 made change bam.file to alignment.bam file
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidduppal authored and evanroyrees committed Mar 26, 2020
1 parent 46adfdb commit 8f7a6ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autometa/common/external/samtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def main(args):
datefmt='%m/%d/%Y %I:%M:%S %p')
parser = argparse.ArgumentParser(description = "Takes a sam file, sorts it and returns the output to a bam file")
parser.add_argument('--sam', help='</path/to/alignment.sam>', type=str)
parser.add_argument('--bam', help='</path/to/output/file.bam>', type=str)
parser.add_argument('--bam', help='</path/to/alignment.bam>', type=str)
parser.add_argument('--nproc', help='Number of processors to use', default=mp.cpu_count(), type=int)
args = parser.parse_args()
main(args)

0 comments on commit 8f7a6ee

Please sign in to comment.