-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from fmalmeida/dev
Wrap-up version 3.2.0
- Loading branch information
Showing
724 changed files
with
1,980,252 additions
and
120,348 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,37 @@ | ||
name: Testing hybrid / docker from PR | ||
on: | ||
pull_request: | ||
branches: [master, dev] | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
run_nextflow: | ||
name: Run pipeline for the upcoming PR | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Nextflow | ||
env: | ||
CAPSULE_LOG: none | ||
run: | | ||
wget -qO- get.nextflow.io | bash | ||
sudo mv nextflow /usr/local/bin/ | ||
- name: Clean environment | ||
run: | | ||
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android | ||
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET | ||
- name: Run tests for hybrid | ||
run: | | ||
nextflow run main.nf -profile docker,test,hybrid,pacbio --skip_haslr | ||
rm -r work .nextflow* | ||
- name: View results | ||
run: | | ||
sudo apt-get install -y tree | ||
tree hybrid_test_pacbio |
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,42 @@ | ||
name: Testing hybrid / singularity from PR | ||
on: | ||
pull_request: | ||
branches: [master, dev] | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
run_nextflow: | ||
name: Run pipeline for the upcoming PR | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Singularity | ||
uses: eWaterCycle/setup-singularity@v7 | ||
with: | ||
singularity-version: 3.8.3 | ||
|
||
- name: Install Nextflow | ||
env: | ||
CAPSULE_LOG: none | ||
run: | | ||
wget -qO- get.nextflow.io | bash | ||
sudo mv nextflow /usr/local/bin/ | ||
|
||
- name: Clean environment | ||
run: | | ||
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android | ||
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET | ||
|
||
- name: Run tests for hybrid | ||
run: | | ||
nextflow run main.nf -profile singularity,test,hybrid,pacbio | ||
rm -r work .nextflow* | ||
|
||
- name: View results | ||
run: | | ||
sudo apt-get install -y tree | ||
tree hybrid_test |
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,37 @@ | ||
name: Testing illumina / docker from PR | ||
on: | ||
pull_request: | ||
branches: [ master, dev ] | ||
types: [ opened, synchronize, reopened ] | ||
|
||
jobs: | ||
run_nextflow: | ||
name: Run pipeline for the upcoming PR | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Nextflow | ||
env: | ||
CAPSULE_LOG: none | ||
run: | | ||
wget -qO- get.nextflow.io | bash | ||
sudo mv nextflow /usr/local/bin/ | ||
- name: Clean environment | ||
run: | | ||
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android | ||
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET | ||
- name: Run tests for illumina | ||
run: | | ||
nextflow run main.nf -profile docker,test,sreads | ||
rm -r work .nextflow* | ||
- name: View results | ||
run: | | ||
sudo apt-get install -y tree | ||
tree sreads_test |
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,42 @@ | ||
name: Testing illumina / singularity from PR | ||
on: | ||
pull_request: | ||
branches: [ master, dev ] | ||
types: [ opened, synchronize, reopened ] | ||
|
||
jobs: | ||
run_nextflow: | ||
name: Run pipeline for the upcoming PR | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Singularity | ||
uses: eWaterCycle/setup-singularity@v7 | ||
with: | ||
singularity-version: 3.8.3 | ||
|
||
- name: Install Nextflow | ||
env: | ||
CAPSULE_LOG: none | ||
run: | | ||
wget -qO- get.nextflow.io | bash | ||
sudo mv nextflow /usr/local/bin/ | ||
- name: Clean environment | ||
run: | | ||
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android | ||
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET | ||
- name: Run tests for illumina | ||
run: | | ||
nextflow run main.nf -profile singularity,test,sreads | ||
rm -r work .nextflow* | ||
- name: View results | ||
run: | | ||
sudo apt-get install -y tree | ||
tree sreads_test |
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,37 @@ | ||
name: Testing long-reads / docker (ONT) from PR | ||
on: | ||
pull_request: | ||
branches: [ master, dev ] | ||
types: [ opened, synchronize, reopened ] | ||
|
||
jobs: | ||
run_nextflow: | ||
name: Run pipeline for the upcoming PR | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Nextflow | ||
env: | ||
CAPSULE_LOG: none | ||
run: | | ||
wget -qO- get.nextflow.io | bash | ||
sudo mv nextflow /usr/local/bin/ | ||
- name: Clean environment | ||
run: | | ||
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android | ||
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET | ||
- name: Run tests for long-reads (ont) | ||
run: | | ||
nextflow run main.nf -profile docker,test,lreads,ont --max_memory '6.GB' --max_cpus 2 --skip_flye --skip_canu | ||
rm -r work .nextflow* | ||
- name: View results | ||
run: | | ||
sudo apt-get install -y tree | ||
tree lreads_test_ont |
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,37 @@ | ||
name: Testing long-reads HIFI / docker (ONT) from PR | ||
on: | ||
pull_request: | ||
branches: [ master, dev ] | ||
types: [ opened, synchronize, reopened ] | ||
|
||
jobs: | ||
run_nextflow: | ||
name: Run pipeline for the upcoming PR | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Nextflow | ||
env: | ||
CAPSULE_LOG: none | ||
run: | | ||
wget -qO- get.nextflow.io | bash | ||
sudo mv nextflow /usr/local/bin/ | ||
|
||
- name: Clean environment | ||
run: | | ||
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android | ||
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET | ||
|
||
- name: Run tests for long-reads (ont) | ||
run: | | ||
nextflow run main.nf -profile docker,test,lreads,ont_hifi --max_memory '6.GB' --max_cpus 4 | ||
rm -r work .nextflow* | ||
|
||
- name: View results | ||
run: | | ||
sudo apt-get install -y tree | ||
tree lreads_test_ont_hifi |
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,48 @@ | ||
name: Testing long-reads / singularity (ONT) from PR | ||
on: | ||
pull_request: | ||
branches: [ master, dev ] | ||
types: [ opened, synchronize, reopened ] | ||
|
||
jobs: | ||
run_nextflow: | ||
name: Run pipeline for the upcoming PR | ||
runs-on: macos-latest | ||
|
||
steps: | ||
|
||
- name: 'Set up latest Oracle JDK 17' | ||
uses: oracle-actions/setup-java@v1 | ||
with: | ||
website: oracle.com | ||
release: 17 | ||
|
||
- name: Check out pipeline code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Singularity | ||
uses: eWaterCycle/setup-singularity@v7 | ||
with: | ||
singularity-version: 3.8.3 | ||
|
||
- name: Install Nextflow | ||
env: | ||
CAPSULE_LOG: none | ||
run: | | ||
wget -qO- get.nextflow.io | bash | ||
sudo mv nextflow /usr/local/bin/ | ||
|
||
- name: Clean environment | ||
run: | | ||
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android | ||
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET | ||
|
||
- name: Run tests for long-reads (ont) | ||
run: | | ||
nextflow run main.nf -profile singularity,test,lreads,ont | ||
rm -r work .nextflow* | ||
|
||
- name: View results | ||
run: | | ||
sudo apt-get install -y tree | ||
tree lreads_test_ont |
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 @@ | ||
repository_type: pipeline |
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.