Skip to content

Commit

Permalink
Update version to 0.1.20230815
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung authored Aug 8, 2023
1 parent 6d43dde commit b0b2800
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aci
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ parser.add_argument('-d', '--bed', required = True, type = str, help ='(required
parser.add_argument('-s', '--single', action='store_true', help ='flag that specifies that reads are single-end in bam file')
parser.add_argument('-o', '--out', type=str, help='directory for results', default='aci')
parser.add_argument('-t', '--threads', type=int, help='specifies number of threads to use', default=4)
parser.add_argument('-v', '--version', help='print version and exit', action='version', version='%(prog)s ' + '0.0.20230815')
parser.add_argument('-v', '--version', help='print version and exit', action='version', version='%(prog)s ' + '0.1.20230815')
args = parser.parse_args()

# the function that reduces the bam file to the region in question and then gets coverage
Expand Down Expand Up @@ -123,7 +123,7 @@ def amplicon_depth(df, bam, region, single):

if __name__ == "__main__":

version = '0.0.20230815'
version = '0.1.20230815'

if not os.path.exists(args.bed):
logging.critical('bedfile ' + args.bed + ' does not exist. Exiting')
Expand Down

0 comments on commit b0b2800

Please sign in to comment.