Skip to content

Commit

Permalink
Merge pull request #1251 from adamrtalbot/deseq2qc_test_data
Browse files Browse the repository at this point in the history
Replace deseq2qc paths
  • Loading branch information
adamrtalbot authored Mar 11, 2024
2 parents cd6d5ac + 41b142a commit 37588d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 45 deletions.
18 changes: 0 additions & 18 deletions modules/local/deseq2_qc/tests/data/countFile.tsv

This file was deleted.

12 changes: 0 additions & 12 deletions modules/local/deseq2_qc/tests/data/deseq2_clustering_header.txt

This file was deleted.

11 changes: 0 additions & 11 deletions modules/local/deseq2_qc/tests/data/deseq2_pca_header.txt

This file was deleted.

8 changes: 4 additions & 4 deletions modules/local/deseq2_qc/tests/main.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ nextflow_process {
when {
process {
"""
input[0] = file("${moduleTestDir}/data/countFile.tsv")
input[1] = file("${moduleTestDir}/data/deseq2_pca_header.txt")
input[2] = file("${moduleTestDir}/data/deseq2_clustering_header.txt")
""".stripIndent().trim()
input[0] = file(params.pipelines_testdata_base_path + "deseq2qc/countFile.tsv", checkIfExists: true)
input[1] = file(params.pipelines_testdata_base_path + "deseq2qc/deseq2_pca_header.txt", checkIfExists: true)
input[2] = file(params.pipelines_testdata_base_path + "deseq2qc/deseq2_clustering_header.txt", checkIfExists: true)
"""
}
}

Expand Down

0 comments on commit 37588d2

Please sign in to comment.