Skip to content

Commit

Permalink
RAPT v0.4.2 - teamcity CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RAPT-release authored and RAPT-release committed Oct 25, 2021
1 parent acd0d02 commit ee6865f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion GCP RAPT.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Here are instructions to execute RAPT once your system is set up. Additional ins
3. Download the latest release by executing the following commands:

```
~$ curl -sSLo rapt.tar.gz https://github.com/ncbi/rapt/releases/download/v0.4.1/rapt-v0.4.1.tar.gz
~$ curl -sSLo rapt.tar.gz https://github.com/ncbi/rapt/releases/download/v0.4.2/rapt-v0.4.2.tar.gz
~$ tar -xzf rapt.tar.gz && rm -f rapt.tar.gz
```
4. Run `run_rapt_gcp.sh help` to see the *GCP RAPT* usage information.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If you are new to RAPT, please visit our [wiki page](https://github.com/ncbi/rap

To use the latest version, download the RAPT command-line interface with the following commands:
```
~$ curl -sSLo rapt.tar.gz https://github.com/ncbi/rapt/releases/download/v0.4.1/rapt-v0.4.1.tar.gz
~$ curl -sSLo rapt.tar.gz https://github.com/ncbi/rapt/releases/download/v0.4.2/rapt-v0.4.2.tar.gz
~$ tar -xzf rapt.tar.gz && rm -f rapt.tar.gz
```

Expand Down
2 changes: 1 addition & 1 deletion Standalone RAPT.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Here are instructions to execute RAPT once your system is set up. Additional ins
2. Download the latest release by executing the following commands:<br>

```
~$ curl -sSLo rapt.tar.gz https://github.com/ncbi/rapt/releases/download/v0.4.1/rapt-v0.4.1.tar.gz
~$ curl -sSLo rapt.tar.gz https://github.com/ncbi/rapt/releases/download/v0.4.2/rapt-v0.4.2.tar.gz
~$ tar -xzf rapt.tar.gz && rm -f rapt.tar.gz
```
3. Run `./run_rapt.py -h` to see the *Stand-alone RAPT* usage information<br>
Expand Down
3 changes: 3 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### Release v0.4.2
- upgrade to booster 1.76 for SKESA

### Release v0.4.1
* Fix double quoted string syntax error
* try use fewer words of genus_species string and retry if taxcheck fails
Expand Down
2 changes: 1 addition & 1 deletion dist/README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Read Assembly and Annotation Pipeline Tool (RAPT) v0.4.1
Read Assembly and Annotation Pipeline Tool (RAPT) v0.4.2

RAPT is a NCBI pipeline designed for assembling and annotating Illumina genome sequencing reads obtained from bacterial or archaeal isolates. RAPT consists of two major NCBI components, SKESA and PGAP. SKESA is a de-novo assembler for microbial genomes based on DeBruijn graphs. PGAP is a prokaryotic genome annotation pipeline that combines ab initio gene prediction algorithms with homology based methods. RAPT takes an Illumina SRA run or a fasta file as input and produces an assembled and annotated genome.

Expand Down
8 changes: 4 additions & 4 deletions dist/release-notes.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
RELEASE: v0.4.1
DATE: 10-12-2021
BUILD: rapt-34986039
RELEASE: v0.4.2
DATE: 10-25-2021
BUILD: rapt-35244699
SKESA: 2.5.0
PGAPX: 2021-07-01.build5508

DESCRIPTION:

This release fixed a bug (double quote of version string that causes syntax error when running standalone run_rapt.py), added logic to tolerate minor taxonomy name mismatch, and retry upon SRA download failure caused by network glitches.
This release update SKESA to use a newer version of boost in order to handle some flavor of gzipped input file.
4 changes: 2 additions & 2 deletions dist/run_rapt.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
##to be compatible with python2
from abc import ABCMeta, abstractmethod

IMAGE_URI="ncbi/rapt:v0.4.1"
IMAGE_URI="ncbi/rapt:v0.4.2"

RAPT_VERSION="rapt-34986039"
RAPT_VERSION="rapt-35244699"

DEFAULT_REF_DIR = '.rapt_refdata'

Expand Down
4 changes: 2 additions & 2 deletions dist/run_rapt_gcp.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash

###############################* Global Constants *##################################
IMAGE_URI="ncbi/rapt:v0.4.1"
RAPT_VERSION="rapt-34986039"
IMAGE_URI="ncbi/rapt:v0.4.2"
RAPT_VERSION="rapt-35244699"

GCP_LOGS_VIEWER="https://console.cloud.google.com/logs/viewer"

Expand Down

0 comments on commit ee6865f

Please sign in to comment.