Skip to content

Commit

Permalink
specifies special files
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Aug 3, 2023
1 parent 8ec00cb commit 28d69a9
Show file tree
Hide file tree
Showing 8 changed files with 63 additions and 8 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ecoli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,12 @@ jobs:
nextflow run . -profile docker --maxcpus 2 --medcpus 2
cat grandeur/grandeur_summary.tsv
cat grandeur/shigatyper/shigatyper_results.txt
cat grandeur/serotypefinder/serotypefinder_results.txt
- name: Check E. coli file
run: |
for file in grandeur/shigatyper/shigatyper_results.txt grandeur/serotypefinder/serotypefinder_results.txt
do
head $file
wc -l $file
done
8 changes: 8 additions & 0 deletions .github/workflows/just_msa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,11 @@ jobs:
mv *fna fastas/.
nextflow run . -profile docker,just_msa --maxcpus 2 --medcpus 2
- name: Check MSA files
run: |
for file in grandeur/roary/summary_statistics.txt grandeur/iqtree2/iqtree.treefile.nwk snp_matrix_with_qc.txt
do
head $file
wc -l $file
done
9 changes: 8 additions & 1 deletion .github/workflows/legionella.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,11 @@ jobs:
cat grandeur/grandeur_summary.tsv
cat grandeur/legsta/legsta_summary.csv
- name: Check Legionella file
run: |
for file in grandeur/legsta/legsta_summary.csv
do
head $file
wc -l $file
done
9 changes: 8 additions & 1 deletion .github/workflows/run_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,11 @@ jobs:
mv *fastq.gz reads/.
nextflow run . -profile docker --maxcpus 2 --medcpus 2
cat grandeur/grandeur_summary.tsv
- name: Check summary files
run: |
for file in grandeur/mlst/mlst_summary.tsv
do
head $file
wc -l $file
done
11 changes: 10 additions & 1 deletion .github/workflows/salmonella.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,14 @@ jobs:
done
nextflow run . -profile docker --maxcpus 2 --medcpus 2
cat grandeur/grandeur_summary.tsv
cat grandeur/seqsero2/seqsero2_results.txt
- name: Check Salmonella file
run: |
for file in grandeur/seqsero2/seqsero2_results.txt
do
head $file
wc -l $file
done
9 changes: 8 additions & 1 deletion .github/workflows/strepA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,11 @@ jobs:
nextflow run . -profile docker --maxcpus 2 --medcpus 2
cat grandeur/grandeur_summary.tsv
cat grandeur/emmtyper/emmtyper_summary.tsv
- name: Check Strep pneumo file
run: |
for file in grandeur/emmtyper/emmtyper_summary.tsv
do
head $file
wc -l $file
done
10 changes: 9 additions & 1 deletion .github/workflows/strep_pneumo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,12 @@ jobs:
nextflow run . -profile docker --maxcpus 2 --medcpus 2
cat grandeur/grandeur_summary.tsv
cat grandeur/pbptyper/pbptyper_summary.tsv
- name: Check Strep pneumo file
run: |
for file in grandeur/pbptyper/pbptyper_summary.tsv
do
head $file
wc -l $file
done
4 changes: 3 additions & 1 deletion .github/workflows/vibrio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,6 @@ jobs:
nextflow run . -profile docker --maxcpus 2 --medcpus 2
cat grandeur/grandeur_summary.tsv
grep -i vibrio grandeur/fastani/fastani_summary.csv
- name: Check Vibrio species
run: grep -i vibrio grandeur/fastani/fastani_summary.csv

0 comments on commit 28d69a9

Please sign in to comment.