Skip to content

Commit

Permalink
Prepare for release 1.1.3 (#21)
Browse files Browse the repository at this point in the history
* Prepare for release 1.1.3

* Bump version in tarball in README.md

* Don't output row index for mtgrasp_summarize.py
  • Loading branch information
lcoombe authored Apr 3, 2024
1 parent 819f60e commit f026f87
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Implementation: Cecilia Yang
# Setup
1. Download mtGrasp package

You can download the latest version of the tarball file [here](https://github.com/bcgsc/mtGrasp/releases/download/v1.1.0/mtGrasp-v1.1.0.tar.gz).
You can download the latest version of the tarball file [here](https://github.com/bcgsc/mtGrasp/releases/download/v1.1.3/mtGrasp-v1.1.3.tar.gz).


2. Add the mtGrasp directory to your PATH, use the following command to check if it is added correctly
Expand Down
2 changes: 1 addition & 1 deletion mtgrasp.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import shlex
import sys

MTGRASP_VERSION = 'mtGrasp v1.1.2' # Make sure to edit the version for future releases
MTGRASP_VERSION = 'mtGrasp v1.1.3'

parser = argparse.ArgumentParser(description='mtGrasp: de novo assembly of reference-grade animal mitochondrial genomes')
parser.add_argument('-r1', '--read1', help='Forward read fastq.gz file [Required]')
Expand Down
3 changes: 1 addition & 2 deletions mtgrasp.smk
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Snakemake file for mtGrasp pipeline
# Make sure to edit the version for new releases
mtgrasp_version = 'v1.1.2'
mtgrasp_version = 'v1.1.3'


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

import argparse
import sys
Expand Down
4 changes: 2 additions & 2 deletions 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.2' # Make sure to edit the version for future releases
mtgrasp_version = 'v1.1.3'

import argparse
import os
Expand Down Expand Up @@ -117,7 +117,7 @@ def get_assembly_metrics(fasta):
"Standardization Status": standardization_status_list
})

df.to_csv(tsv_filename, sep="\t")
df.to_csv(tsv_filename, sep="\t", index=False)

with open(path_txt_filename, 'w') as f:
for path in file_list:
Expand Down

0 comments on commit f026f87

Please sign in to comment.