Skip to content

Commit

Permalink
Merge pull request #17 from bcgsc/release_v1.1.1
Browse files Browse the repository at this point in the history
prepare for release v1.1.1
  • Loading branch information
ycecilia authored Jan 25, 2024
2 parents 678cf1c + a65f3fe commit 9271f17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mtgrasp.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import argparse
import subprocess
import shlex
mtgrasp_version = 'mtGrasp v1.1.0' # Make sure to edit the version for future releases
mtgrasp_version = 'mtGrasp v1.1.1' # Make sure to edit the version for future releases
# Required parameters
parser = argparse.ArgumentParser(description='The following arguments are required: -r1/--read1, -r2/--read2, -o/--out_dir, -m/--mt_gen, -r/--ref_path')
parser.add_argument('-r1', '--read1', help='Forward read fastq.gz file [Required]')
Expand Down
2 changes: 1 addition & 1 deletion mtgrasp.smk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Snakemake file for mtGrasp pipeline
# Make sure to edit the version for new releases
mtgrasp_version = 'v1.1.0'
mtgrasp_version = 'v1.1.1'


import os.path
Expand Down
2 changes: 1 addition & 1 deletion mtgrasp_standardize.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# Make sure to edit the version for new releases
mtgrasp_version = 'v1.1.0'
mtgrasp_version = 'v1.1.1'

import argparse
import sys
Expand Down
2 changes: 1 addition & 1 deletion mtgrasp_summarize.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'''
This script can be used to summarize mtGrasp assembly outputs by providing a text file containing the relative or complete path(s) to assembly output folder(s).
'''
mtgrasp_version = 'v1.1.0' # Make sure to edit the version for future releases
mtgrasp_version = 'v1.1.1' # Make sure to edit the version for future releases

import argparse
import os
Expand Down

0 comments on commit 9271f17

Please sign in to comment.