Skip to content

Commit

Permalink
use sintax instead of dada to satisfy memory limit
Browse files Browse the repository at this point in the history
  • Loading branch information
d4straub committed Mar 19, 2024
1 parent 54e28be commit 2756612
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
5 changes: 4 additions & 1 deletion conf/test_iontorrent.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ params {
// Input data
FW_primer = "GTGARTCATCGARTCTTTG"
RV_primer = "TCCTCSSCTTATTGATATGC"
dada_ref_taxonomy = "unite-fungi=8.2"
sintax_ref_taxonomy = "unite-fungi=8.2"
input = "https://raw.githubusercontent.com/nf-core/test-datasets/ampliseq/samplesheets/Samplesheet_it_SE_ITS.tsv"
iontorrent = true
max_ee = 5
skip_qiime = true

// Prevent default taxonomic classification
skip_dada_taxonomy = true
}
5 changes: 4 additions & 1 deletion conf/test_pacbio_its.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ params {
// Input data
FW_primer = "CTTGGTCATTTAGAGGAAGTAA"
RV_primer = "TCCTGAGGGAAACTTCG"
dada_ref_taxonomy = "unite-fungi=8.2"
sintax_ref_taxonomy = "unite-fungi=8.2"
input = "https://raw.githubusercontent.com/nf-core/test-datasets/ampliseq/samplesheets/Samplesheet_pacbio_ITS.tsv"
metadata = "https://raw.githubusercontent.com/nf-core/test-datasets/ampliseq/samplesheets/Metadata_pacbio_ITS.tsv"
pacbio = true
Expand All @@ -31,4 +31,7 @@ params {
addsh = true
skip_qiime = true
sbdiexport = true

// Prevent default taxonomic classification
skip_dada_taxonomy = true
}
4 changes: 1 addition & 3 deletions tests/pipeline/iontorrent.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,9 @@ nextflow_pipeline {
{ assert snapshot(path("$outputDir/dada2/ASV_seqs.fasta"),
path("$outputDir/dada2/ASV_table.tsv"),
path("$outputDir/dada2/DADA2_stats.tsv"),
path("$outputDir/dada2/ref_taxonomy.unite-fungi_8_3.txt"),
path("$outputDir/dada2/DADA2_table.rds"),
path("$outputDir/dada2/DADA2_table.tsv")).match("dada2") },
{ assert new File("$outputDir/dada2/ASV_tax.unite-fungi_8_3.tsv").exists() },
{ assert new File("$outputDir/dada2/ASV_tax_species.unite-fungi_8_3.tsv").exists() },
{ assert new File("$outputDir/sintax/ASV_tax_sintax.unite-fungi_8_2.tsv").exists() },
{ assert new File("$outputDir/fastqc/it1_fastqc.html").exists() },
{ assert new File("$outputDir/fastqc/it2_fastqc.html").exists() },
{ assert new File("$outputDir/fastqc/it3_fastqc.html").exists() },
Expand Down
1 change: 0 additions & 1 deletion tests/pipeline/iontorrent.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions tests/pipeline/pacbio_its.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,10 @@ nextflow_pipeline {
{ assert new File("$outputDir/cutadapt/pb3.trimmed.cutadapt.log").exists() },
{ assert snapshot(path("$outputDir/dada2/ASV_seqs.fasta"),
path("$outputDir/dada2/ASV_table.tsv"),
path("$outputDir/dada2/ref_taxonomy.unite-fungi_8_3.txt"),
path("$outputDir/dada2/DADA2_stats.tsv"),
path("$outputDir/dada2/DADA2_table.rds"),
path("$outputDir/dada2/DADA2_table.tsv")).match("dada2") },
{ assert new File("$outputDir/dada2/ASV_tax.unite-fungi_8_3.tsv").exists() },
{ assert new File("$outputDir/dada2/ASV_tax_species.unite-fungi_8_3.tsv").exists() },
{ assert new File("$outputDir/sintax/ASV_tax_sintax.unite-fungi_8_2.tsv").exists() },
{ assert new File("$outputDir/fastqc/pb1_fastqc.html").exists() },
{ assert new File("$outputDir/fastqc/pb2_fastqc.html").exists() },
{ assert new File("$outputDir/fastqc/pb3_fastqc.html").exists() },
Expand All @@ -54,7 +52,7 @@ nextflow_pipeline {
{ assert new File("$outputDir/SBDI/annotation.tsv").exists() },
{ assert new File("$outputDir/SBDI/asv-table.tsv").exists() },
{ assert new File("$outputDir/summary_report/summary_report.html").exists() },
{ assert new File("$outputDir/phyloseq/dada2_phyloseq.rds").exists() }
{ assert new File("$outputDir/phyloseq/sintax_phyloseq.rds").exists() }
)
}
}
Expand Down
1 change: 0 additions & 1 deletion tests/pipeline/pacbio_its.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2756612

Please sign in to comment.