Support for genocode v46/vM35 annotations #116
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
name: CI (mouse SE UST, UST_1 and ST data) | |
# This workflow is triggered on pushes and PRs to the repository. | |
# It runs the pipeline with the minimal test dataset to check that it completes without any syntax errors | |
on: [push, pull_request] | |
jobs: | |
test: | |
env: | |
NXF_VER: ${{ matrix.nxf_ver }} | |
NXF_ANSI_LOG: false | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# Nextflow versions: check pipeline minimum and current latest | |
nxf_ver: [''] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Crean env | |
run: | | |
sudo rm -rf /usr/share/dotnet | |
sudo rm -rf /opt/ghc | |
sudo rm -rf "/usr/local/share/boost" | |
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | |
- name: Install Nextflow | |
run: | | |
wget -qO- get.nextflow.io | bash | |
sudo mv nextflow /usr/local/bin/ | |
- name: Pull docker image | |
run: | | |
docker pull myoshimura080822/ramdaq:v1.2 | |
- name: Run pipeline with test_SE_UST_M | |
run: | | |
nextflow run ${GITHUB_WORKSPACE} -profile test_SE_UST_M,docker --genome GRCm39_vM30_chr19 --entire_max_cpus 2 --entire_max_memory '4.GB' --github_action | |
sudo rm -rf /home/runner/work/ramdaq/ramdaq/results/pipeline_info | |
- name: Run pipeline with test_SE_UST_M_1 | |
run: | | |
nextflow run ${GITHUB_WORKSPACE} -profile test_SE_UST_M_1,docker --genome GRCm39_vM30_chr19 --entire_max_cpus 2 --entire_max_memory '4.GB' --github_action | |
sudo rm -rf /home/runner/work/ramdaq/ramdaq/results/pipeline_info | |
- name: Run pipeline with test_SE_ST_M | |
run: | | |
nextflow run ${GITHUB_WORKSPACE} -profile test_SE_ST_M,docker --genome GRCm39_vM30_chr19 --entire_max_cpus 2 --entire_max_memory '4.GB' --github_action | |
sudo rm -rf /home/runner/work/ramdaq/ramdaq/results/pipeline_info | |
- name: Deploy to ramdaq-mouse-se-ust.surge.sh | |
uses: dswistowski/surge-sh-action@v1 | |
with: | |
domain: 'ramdaq-mouse-se-ust.surge.sh' | |
project: './results_SE_UST_M/MultiQC' | |
login: ${{ secrets.SURGE_LOGIN }} | |
token: ${{ secrets.SURGE_TOKEN }} | |
- name: Deploy to ramdaq-mouse-se-ust_1.surge.sh | |
uses: dswistowski/surge-sh-action@v1 | |
with: | |
domain: 'ramdaq-mouse-se-ust_1.surge.sh' | |
project: './results_SE_UST_M_1/MultiQC' | |
login: ${{ secrets.SURGE_LOGIN }} | |
token: ${{ secrets.SURGE_TOKEN }} | |
- name: Deploy to ramdaq-mouse-se-st.surge.sh | |
uses: dswistowski/surge-sh-action@v1 | |
with: | |
domain: 'ramdaq-mouse-se-st.surge.sh' | |
project: './results_SE_ST_M/MultiQC' | |
login: ${{ secrets.SURGE_LOGIN }} | |
token: ${{ secrets.SURGE_TOKEN }} |