Use basespace CLI in download app#25
Merged
Merged
Conversation
The output folder structure now reflects the output folder structure of the superseded app
Member
Author
|
Below we provide a comparison of the output directory file structure. The file structure is almost identical with the only differences being a Superseded app: new_download_app
└── 214264108
├── 210923_214264108.json
├── Config
├── Data
├── InstrumentAnalyticsLogs
├── InterOp
├── Logs
├── Recipe
├── RTAComplete.txt
├── RTAConfiguration.xml
├── RTALogs
├── RTARead1Complete.txt
├── RTARead2Complete.txt
├── RTARead3Complete.txt
├── RTARead4Complete.txt
├── RunCompletionStatus.xml
├── RunInfo.xml
├── RunParameters.xml
└── SampleSheet.csv
8 directories, 11 filesNew download app: superseded_download_app
├── 214264108
│ ├── Config
│ ├── Data
│ ├── InstrumentAnalyticsLogs
│ ├── InterOp
│ ├── Logs
│ ├── Recipe
│ ├── RTAComplete.txt
│ ├── RTAConfiguration.xml
│ ├── RTALogs
│ ├── RTARead1Complete.txt
│ ├── RTARead2Complete.txt
│ ├── RTARead3Complete.txt
│ ├── RTARead4Complete.txt
│ ├── RunCompletionStatus.xml
│ ├── RunInfo.xml
│ ├── RunParameters.xml
│ └── SampleSheet.csv
└── nohup.out
8 directories, 11 files |
arisp99
commented
Feb 25, 2022
| scp /opt/programs/parasight_v7.6/parasight.pl /opt/bin/parasight76.pl | ||
|
|
||
| # install basespace cli | ||
| BS_PATH="https://launch.basespace.illumina.com/CLI/latest/amd64-linux/bs" |
Member
Author
There was a problem hiding this comment.
Instead of downloading the latest version of the CLI tool, we can specify the version number by replacing latest with a version number. The available versions can be found here.
arisp99
commented
Feb 25, 2022
Checks if `run_id` is unset and writes the help page to `stderr`.
aydemiro
reviewed
Feb 28, 2022
aydemiro
reviewed
Feb 28, 2022
aydemiro
reviewed
Feb 28, 2022
aydemiro
reviewed
Feb 28, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR creates a new basespace download app that uses the official basespace CLI. This PR supersedes the work in #13 and introduces one large change. Namely, in order to maintain backward compatibility, we supersede the original download app that uses a python script for downloading data. Users may, therefore, still use the old download app.
Closes #8.