Skip to content

Update 20240417

Update 20240417 #14

Workflow file for this run

name: Test Grandeur workflow profile test0
on: [pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
- 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,test0 -c .github/workflows/github_actions.config
- name: Check contig files
run: |
for file in grandeur/contigs/*_contigs.fa
do
head $file
wc -l $file
done