Skip to content

Commit

Permalink
Fixed tag in end-to-end-se.yml for the ont test run. Added a manual p…
Browse files Browse the repository at this point in the history
…arameter for data being ONT. Added adapters to the ONT file so it doesn't break.
  • Loading branch information
simonleandergrimm committed Jan 16, 2025
1 parent 1df4699 commit 0f5f68d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/end-to-end-se.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
run: nf-test test --tag run_dev_se --verbose

- name: Run run_dev_se workflow on ONT data
run: nf-test test --tag run_dev_se_ont --verbose
run: nf-test test --tag run_dev_ont --verbose
3 changes: 3 additions & 0 deletions configs/run.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
params {
mode = "run"

// Sequencing platform
ont = false // Whether the sequencing is ONT (true) or Illumina (false)

// Directories
base_dir = "s3://nao-mgs-wb/test-batch" // Parent for working and output directories (can be S3)
ref_dir = "s3://nao-mgs-wb/index/20241209/output" // Reference/index directory (generated by index workflow)
Expand Down
3 changes: 3 additions & 0 deletions configs/run_dev_se.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
params {
mode = "run_dev_se"

// Sequencing platform
ont = false // Whether the sequencing is ONT (true) or Illumina (false)

// Directories
base_dir = "s3://nao-mgs-simon/test_single_read" // Parent for working and output directories (can be S3)
ref_dir = "s3://nao-mgs-wb/index/20241209/output" // Reference/index directory (generated by index workflow)
Expand Down
5 changes: 3 additions & 2 deletions test-data/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
params {
mode = "run"

// Sequencing platform
ont = false // Whether the sequencing is ONT (true) or Illumina (false)

// Directories
base_dir = "s3://nao-mgs-wb/test-batch" // Parent for working and output directories (can be S3)
ref_dir = "s3://nao-mgs-wb/index/20241209/output" // Reference/index directory (generated by index workflow)



// Files
sample_sheet = "${launchDir}/samplesheet.csv" // Path to library TSV
adapters = "${projectDir}/ref/adapters.fasta" // Path to adapter file for adapter trimming
Expand Down
4 changes: 4 additions & 0 deletions tests/run_dev_ont.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
params {
mode = "run_dev_se"

// Sequencing platform
ont = true // Whether the sequencing is ONT (true) or Illumina (false)

// Directories
base_dir = "./" // Parent for working and output directories (can be S3)
ref_dir = "s3://nao-testing/index-test/output" // Reference/index directory (generated by index workflow)

// Files
sample_sheet = "${projectDir}/test-data/ont-samplesheet.csv" // Path to library TSV
adapters = "${projectDir}/ref/adapters.fasta" // Path to adapter file for adapter trimming. Not used for ONT.

// Numerical
human_read_filtering = true // Whether to filter human reads
Expand Down
3 changes: 3 additions & 0 deletions tests/run_dev_se.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
params {
mode = "run_dev_se"

// Sequencing platform
ont = false // Whether the sequencing is ONT (true) or Illumina (false)

// Directories
base_dir = "./" // Parent for working and output directories (can be S3)
ref_dir = "s3://nao-testing/index-test/output" // Reference/index directory (generated by index workflow)
Expand Down

0 comments on commit 0f5f68d

Please sign in to comment.