-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
172 changed files
with
4,974 additions
and
3,945 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"words": [ | ||
"CACHEDIR", | ||
"Charliecloud", | ||
"conda", | ||
"entrez", | ||
"ksumngs", | ||
"MAFFT", | ||
"metagenomic", | ||
"NCBI", | ||
"Nextflow", | ||
"outdir", | ||
"Palinski", | ||
"phylotree", | ||
"taxid", | ||
"Trimmomatic", | ||
"yavsap", | ||
"Zenodo" | ||
] | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
*.config linguist-language=nextflow | ||
modules/nf-core/** linguist-generated | ||
subworkflows/nf-core/** linguist-generated | ||
bin/sequence-table linguist-language=julia |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Bug report | ||
description: Report something that is broken or incorrect | ||
labels: ["bug"] | ||
title: "[Bug]: " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Before you post this issue, please check the documentation: | ||
- [nf-core website: troubleshooting](https://nf-co.re/usage/troubleshooting) | ||
- [yavsap pipeline documentation](https://ksumngs.github.io/yavsap/usage) | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description of the bug | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: command_used | ||
attributes: | ||
label: Command used and terminal output | ||
description: Steps to reproduce the behaviour. Please paste the command you used to launch the pipeline and the output from your terminal. | ||
render: console | ||
placeholder: | | ||
$ nextflow run ... | ||
Some output where something broke | ||
- type: textarea | ||
id: files | ||
attributes: | ||
label: Relevant files | ||
description: | | ||
Please drag and drop the relevant files here. Create a `.zip` archive if the extension is not allowed. | ||
Your verbose log file `.nextflow.log` is often useful _(this is a hidden file in the directory where you launched the pipeline)_ as well as custom Nextflow configuration files. | ||
- type: textarea | ||
id: system | ||
attributes: | ||
label: System information | ||
description: | | ||
* Nextflow version _(eg. 21.10.3)_ | ||
* Hardware _(eg. HPC, Desktop, Cloud)_ | ||
* Executor _(eg. slurm, local, awsbatch)_ | ||
* Container engine: _(e.g. Docker, Singularity, Conda, Podman, Shifter or Charliecloud)_ | ||
* OS _(eg. CentOS Linux, macOS, Linux Mint)_ | ||
* Version of nf-core/yavsap _(eg. 1.1, 1.5, 1.8.2)_ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Feature request | ||
description: Suggest an idea for the nf-core/yavsap pipeline | ||
labels: ["enhancement"] | ||
title: "[Feature]: " | ||
body: | ||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Summary of feature | ||
description: Please describe your suggestion for a new feature. It might help to describe a problem or use case, plus any alternatives that you have considered. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: processes | ||
attributes: | ||
label: Additional processes | ||
description: Explain what tools would be needed to implement this feature, along with a link to the tool's documentation and a container for the tool. | ||
- type: textarea | ||
id: parameters | ||
attributes: | ||
label: Additional parameters | ||
description: Give a list of new parameters and which tools/processes it would be passed to | ||
- type: textarea | ||
id: visualizer | ||
attributes: | ||
label: Additional visualizer section | ||
description: Describe a new section to add to the visualizer | ||
placeholder: |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: nf-core AWS full size tests | ||
# This workflow is triggered on published releases. | ||
# It can be additionally triggered manually with GitHub actions workflow dispatch button. | ||
# It runs the -profile 'test_full' on AWS batch | ||
|
||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
jobs: | ||
run-tower: | ||
name: Run AWS full tests | ||
if: github.repository == 'nf-core/yavsap' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Launch workflow via tower | ||
uses: nf-core/tower-action@v3 | ||
# TODO nf-core: You can customise AWS full pipeline tests as required | ||
# Add full size test data (but still relatively small datasets for few samples) | ||
# on the `test_full.config` test runs with only one set of parameters | ||
with: | ||
workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} | ||
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} | ||
compute_env: ${{ secrets.TOWER_COMPUTE_ENV }} | ||
workdir: s3://${{ secrets.AWS_S3_BUCKET }}/work/yavsap/work-${{ github.sha }} | ||
parameters: | | ||
{ | ||
"outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/yavsap/results-${{ github.sha }}" | ||
} | ||
profiles: test_full,aws_tower | ||
nextflow_config: | | ||
process.errorStrategy = 'retry' | ||
process.maxRetries = 3 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: nf-core AWS test | ||
# This workflow can be triggered manually with the GitHub actions workflow dispatch button. | ||
# It runs the -profile 'test' on AWS batch | ||
|
||
on: | ||
workflow_dispatch: | ||
jobs: | ||
run-tower: | ||
name: Run AWS tests | ||
if: github.repository == 'nf-core/yavsap' | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Launch workflow using Tower CLI tool action | ||
- name: Launch workflow via tower | ||
uses: nf-core/tower-action@v3 | ||
with: | ||
workspace_id: ${{ secrets.TOWER_WORKSPACE_ID }} | ||
access_token: ${{ secrets.TOWER_ACCESS_TOKEN }} | ||
compute_env: ${{ secrets.TOWER_COMPUTE_ENV }} | ||
workdir: s3://${{ secrets.AWS_S3_BUCKET }}/work/yavsap/work-${{ github.sha }} | ||
parameters: | | ||
{ | ||
"outdir": "s3://${{ secrets.AWS_S3_BUCKET }}/yavsap/results-test-${{ github.sha }}" | ||
} | ||
profiles: test,aws_tower | ||
nextflow_config: | | ||
process.errorStrategy = 'retry' | ||
process.maxRetries = 3 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,3 +42,4 @@ jobs: | |
Thanks again for your contribution! | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
allow-repeats: false | ||
# |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.