Adding meningotype #15
Workflow file for this run
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: Test Grandeur workflow profile test4 | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Clean up Disk space | |
uses: jlumbroso/free-disk-space@main | |
- name: Install Nextflow | |
run: | | |
wget -qO- get.nextflow.io | bash | |
sudo mv nextflow /usr/local/bin/ | |
nextflow -version | |
- name: Run Grandeur | |
run: | | |
nextflow run . -profile docker,test4 -c .github/workflows/github_actions.config --publish_dir_mode link | |
- name: Check contig files | |
run: | | |
for file in grandeur/contigs/*_contigs.fa grandeur/grandeur_summary.tsv | |
do | |
head $file | |
wc -l $file | |
done | |
- name: tree | |
run: tree grandeur* |