Skip to content

Commit

Permalink
RAPT v0.5.0 - teamcity CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RAPT-release authored and RAPT-release committed Jan 5, 2022
1 parent ee6865f commit bb9c8b9
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 13 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.2/rapt-v0.4.2.tar.gz
~$ curl -sSLo rapt.tar.gz https://github.com/ncbi/rapt/releases/download/v0.5.0/rapt-v0.5.0.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.2/rapt-v0.4.2.tar.gz
~$ curl -sSLo rapt.tar.gz https://github.com/ncbi/rapt/releases/download/v0.5.0/rapt-v0.5.0.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.2/rapt-v0.4.2.tar.gz
~$ curl -sSLo rapt.tar.gz https://github.com/ncbi/rapt/releases/download/v0.5.0/rapt-v0.5.0.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
5 changes: 5 additions & 0 deletions dist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### Release v0.5.0
- updated PGAPX to 2021-11-29.build574
- use dedicated ```prefetch``` binary instead of curl to retrieve SRA data


### Release v0.4.2
- upgrade to booster 1.76 for SKESA

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.2
Read Assembly and Annotation Pipeline Tool (RAPT) v0.5.0

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
11 changes: 6 additions & 5 deletions dist/release-notes.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
RELEASE: v0.4.2
DATE: 10-25-2021
BUILD: rapt-35244699
RELEASE: v0.5.0
DATE: 01-05-2022
BUILD: rapt-36255426
SKESA: 2.5.0
PGAPX: 2021-07-01.build5508
PGAPX: 2021-11-29.build5742

DESCRIPTION:

This release update SKESA to use a newer version of boost in order to handle some flavor of gzipped input file.
This release updated PGAPX to 2021-11-29.build5742 and use dedicated program instead of curl to fetch SRA data.

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.2"
IMAGE_URI="ncbi/rapt:v0.5.0"

RAPT_VERSION="rapt-35244699"
RAPT_VERSION="rapt-36255426"

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.2"
RAPT_VERSION="rapt-35244699"
IMAGE_URI="ncbi/rapt:v0.5.0"
RAPT_VERSION="rapt-36255426"

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

Expand Down

0 comments on commit bb9c8b9

Please sign in to comment.