Skip to content

Commit

Permalink
fix: missing strip-components in download-references.nf/star-fusion
Browse files Browse the repository at this point in the history
  • Loading branch information
matq007 committed Jun 16, 2020
1 parent 0e45002 commit ccde848
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed

* Missing `strip-components` in `download-references.nf/star-fusion` [#148](https://github.com/nf-core/rnafusion/issues/148)
* Missing version prefix for cdna [#143](https://github.com/nf-core/rnafusion/issues/143)
* `samtools` missing header in empty file for FusionInspector [ref](https://github.com/STAR-Fusion/STAR-Fusion/issues/191)
* Removed `profile` from helper scripts [#139](https://github.com/nf-core/rnafusion/issues/139)
Expand Down
2 changes: 1 addition & 1 deletion download-references.nf
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ process download_star_fusion {
script:
"""
aws s3 --no-sign-request --region ${params.awsregion} cp s3://ngi-igenomes/Homo_sapiens/Ensembl/GRCh38/Genome/CTAT/ctat_star_fusion_1_8_1.tar.gz .
tar -xf ctat_star_fusion_1_8_1.tar.gz
tar -xf ctat_star_fusion_1_8_1.tar.gz --strip-components=5
rm ctat_star_fusion_1_8_1.tar.gz
"""
}
Expand Down

0 comments on commit ccde848

Please sign in to comment.