-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from icgc-argo/[email protected]
[release]
- Loading branch information
Showing
52 changed files
with
144 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,14 +22,15 @@ | |
*/ | ||
|
||
nextflow.enable.dsl = 2 | ||
version = '1.0.1' | ||
version = '1.0.2' | ||
|
||
// universal params go here, change default value as needed | ||
params.container = "" | ||
params.container_registry = "" | ||
params.container_version = "" | ||
params.cpus = 1 | ||
params.mem = 1 // GB | ||
params.force = false | ||
params.publish_dir = "" // set to empty string will disable publishDir | ||
|
||
// tool specific parmas go here, add / change as needed | ||
|
@@ -40,10 +41,13 @@ params.cleanup = true | |
// ArgoDataSubmissionWf | ||
params.study_id="" | ||
params.download_mode="local" | ||
params.song_container = "" | ||
params.song_container_version = "" | ||
params.score_container = "" | ||
params.score_container_version = "" | ||
params.song_container = "ghcr.io/overture-stack/song-client" | ||
params.song_container_version = "5.0.2" | ||
params.score_container = "ghcr.io/overture-stack/score" | ||
params.score_container_version = "5.9.0" | ||
params.score_mem = 20 | ||
params.score_cpus = 8 | ||
params.score_force = false | ||
|
||
// sanityChecks | ||
params.song_url="" | ||
|
@@ -129,8 +133,12 @@ egaDownload_params = [ | |
upload_params = [ | ||
'max_retries': params.max_retries, | ||
'first_retry_wait_time': params.first_retry_wait_time, | ||
'cpus': params.cpus, | ||
'mem': params.mem, | ||
'score_force' : params.score_force, | ||
'score_cpus' : params.score_cpus, | ||
'score_mem' : params.score_mem, | ||
'score_transport_mem' : params.score_mem, | ||
'song_cpus' : params.cpus, | ||
'song_mem' : params.mem, | ||
'song_url': params.song_url, | ||
'song_container': params.song_container, | ||
'song_container_version': params.song_container_version, | ||
|
@@ -156,15 +164,15 @@ submissionReceipt_params = [ | |
'mem': params.mem, | ||
] | ||
|
||
include { SongScoreUpload as uploadWf } from './wfpr_modules/github.com/icgc-argo-workflows/nextflow-data-processing-utility-tools/[email protected].2/main.nf' params(upload_params) | ||
include { validateSeqtools as valSeq} from './wfpr_modules/github.com/icgc-argo/argo-data-submission/[email protected].7/main.nf' params(validateSeq_params) | ||
include { SongScoreUpload as uploadWf } from './wfpr_modules/github.com/icgc-argo-workflows/nextflow-data-processing-utility-tools/[email protected].3/main.nf' params(upload_params) | ||
include { validateSeqtools as valSeq} from './wfpr_modules/github.com/icgc-argo/argo-data-submission/[email protected].8/main.nf' params(validateSeq_params) | ||
include { EgaDownloadWf as egaWf } from './wfpr_modules/github.com/icgc-argo/argo-data-submission/[email protected]/main.nf' params(egaDownload_params) | ||
include { payloadGenSeqExperiment as pGenExp} from './wfpr_modules/github.com/icgc-argo-workflows/data-processing-utility-tools/[email protected].2/main.nf' params(payloadGen_params) | ||
include { payloadGenSeqExperiment as pGenExp} from './wfpr_modules/github.com/icgc-argo-workflows/data-processing-utility-tools/[email protected].3/main.nf' params(payloadGen_params) | ||
include { cleanupWorkdir as cleanup } from './wfpr_modules/github.com/icgc-argo-workflows/data-processing-utility-tools/[email protected]/main.nf' | ||
include { cram2bam } from './wfpr_modules/github.com/icgc-argo-workflows/dna-seq-processing-tools/[email protected]/main.nf' params(cram2bam_params) | ||
include { getSecondaryFiles } from './wfpr_modules/github.com/icgc-argo-workflows/data-processing-utility-tools/[email protected]/main.nf' params([*:params, 'cleanup': false]) | ||
include { sanityCheck } from './wfpr_modules/github.com/icgc-argo/argo-data-submission/[email protected].1/main.nf' params(sanityCheck_params) | ||
include { payloadJsonToTsvs } from './wfpr_modules/github.com/icgc-argo/argo-data-submission/[email protected].1/main.nf' params(payloadJsonToTsvs_params) | ||
include { sanityCheck } from './wfpr_modules/github.com/icgc-argo/argo-data-submission/[email protected].3/main.nf' params(sanityCheck_params) | ||
include { payloadJsonToTsvs } from './wfpr_modules/github.com/icgc-argo/argo-data-submission/[email protected].2/main.nf' params(payloadJsonToTsvs_params) | ||
include { submissionReceipt } from './wfpr_modules/github.com/icgc-argo/argo-data-submission/[email protected]/main.nf' params(submissionReceipt_params) | ||
// please update workflow code as needed | ||
|
||
|
@@ -436,8 +444,6 @@ workflow ArgoDataSubmissionWf { | |
uploadWf.out.analysis_id, | ||
submissionReceipt.out.receipt | ||
) | ||
//Channel.from(pGenExp.out.payload).view() | ||
//Channel.of(pGenExp.out.payload).view() | ||
|
||
emit: | ||
json_file=pGenExp.out.payload | ||
|
@@ -461,4 +467,4 @@ workflow { | |
params.song_url, | ||
params.clinical_url | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "argo-data-submission-wf", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "ARGO data submission workflow", | ||
"main": "main.nf", | ||
"deprecated": false, | ||
|
@@ -12,15 +12,15 @@ | |
"url": "https://github.com/icgc-argo/argo-data-submission.git" | ||
}, | ||
"dependencies": [ | ||
"github.com/icgc-argo/argo-data-submission/[email protected].7", | ||
"github.com/icgc-argo/argo-data-submission/[email protected].8", | ||
"github.com/icgc-argo/argo-data-submission/[email protected]", | ||
"github.com/icgc-argo-workflows/data-processing-utility-tools/[email protected].2", | ||
"github.com/icgc-argo-workflows/data-processing-utility-tools/[email protected].3", | ||
"github.com/icgc-argo-workflows/data-processing-utility-tools/[email protected]", | ||
"github.com/icgc-argo-workflows/dna-seq-processing-tools/[email protected]", | ||
"github.com/icgc-argo/argo-data-submission/[email protected].1", | ||
"github.com/icgc-argo/argo-data-submission/[email protected].1", | ||
"github.com/icgc-argo/argo-data-submission/[email protected].2", | ||
"github.com/icgc-argo/argo-data-submission/[email protected].3", | ||
"github.com/icgc-argo/argo-data-submission/[email protected]", | ||
"github.com/icgc-argo-workflows/nextflow-data-processing-utility-tools/[email protected].2" | ||
"github.com/icgc-argo-workflows/nextflow-data-processing-utility-tools/[email protected].3" | ||
], | ||
"devDependencies": [], | ||
"contributors": [ | ||
|
@@ -36,4 +36,4 @@ | |
"license": "GNU Affero General Public License v3", | ||
"bugReport": "https://github.com/icgc-argo/argo-data-submission/issues", | ||
"homepage": "https://github.com/icgc-argo/argo-data-submission#readme" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ata-submission-wf/tests/experiment.v2.tsv → ...n-wf/tests/input/experiment-fq.badWXS.tsv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
type submitter_sequencing_experiment_id program_id submitter_donor_id submitter_specimen_id submitter_sample_id submitter_matched_normal_sample_id sequencing_center platform platform_model experimental_strategy sequencing_date read_group_count | ||
sequencing_experiment SubWf_exp_02_FASTQ_input TEST-QA TEST_SUBMITTER_DONOR_ID_aaupbblgaa TEST_SPECIMEN_DONOR_ID_aaupbblgaa TEST_SAMPLE_DONOR_ID_aaupbblgaa EXT ILLUMINA HiSeq 2000 WGS 2014-12-12 3 | ||
sequencing_experiment SubWf_exp_02_FASTQ_input TEST-QA SubWf_test_01 SubWf_test_01_SP_T SubWf_test_01_SA_T SubWf_test_01_SA_N EXT ILLUMINA HiSeq 2000 WXS 2014-12-11 3 |
2 changes: 2 additions & 0 deletions
2
argo-data-submission-wf/tests/input/experiment-fq.badWXS2.tsv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
type submitter_sequencing_experiment_id program_id submitter_donor_id submitter_specimen_id submitter_sample_id submitter_matched_normal_sample_id sequencing_center platform platform_model experimental_strategy sequencing_date read_group_count target_capture_kit primary_target_regions capture_target_regions | ||
sequencing_experiment SubWf_exp_02_FASTQ_input TEST-QA SubWf_test_01 SubWf_test_01_SP_T SubWf_test_01_SA_T SubWf_tes EXT ILLUMINA HiSeq 2000 WXS 2014-12-12 3 dummy_val dummy_val dummy_val |
2 changes: 2 additions & 0 deletions
2
argo-data-submission-wf/tests/input/experiment-fq.goodWXS.tsv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
type submitter_sequencing_experiment_id program_id submitter_donor_id submitter_specimen_id submitter_sample_id submitter_matched_normal_sample_id sequencing_center platform platform_model experimental_strategy sequencing_date read_group_count target_capture_kit primary_target_regions capture_target_regions | ||
sequencing_experiment SubWf_exp_02_FASTQ_input TEST-QA SubWf_test_01 SubWf_test_01_SP_T SubWf_test_01_SA_T SubWf_test_01_SA_N EXT ILLUMINA HiSeq 2000 WXS 2014-12-12 3 dummy_val dummy_val dummy_val |
8 changes: 8 additions & 0 deletions
8
argo-data-submission-wf/tests/local-test-job-14-problem-missingWXSfields.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"study_id": "TEST-QA", | ||
"experiment_info_tsv": "input/experiment-fq.badWXS.tsv", | ||
"read_group_info_tsv": "input/read_group-fq.v2.tsv", | ||
"file_info_tsv": "input/file-fq.v2.tsv", | ||
"download_mode": "local", | ||
"publish_dir": "outdir" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"study_id": "TEST-QA", | ||
"experiment_info_tsv": "input/experiment-fq.goodWXS.tsv", | ||
"read_group_info_tsv": "input/read_group-fq.v2.tsv", | ||
"file_info_tsv": "input/file-fq.v2.tsv", | ||
"download_mode": "local", | ||
"publish_dir": "outdir" | ||
} |
8 changes: 8 additions & 0 deletions
8
argo-data-submission-wf/tests/local-test-job-16-WXSmissingMatched.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"study_id": "TEST-QA", | ||
"experiment_info_tsv": "input/experiment-fq.badWXS2.tsv", | ||
"read_group_info_tsv": "input/read_group-fq.v2.tsv", | ||
"file_info_tsv": "input/file-fq.v2.tsv", | ||
"download_mode": "local", | ||
"publish_dir": "outdir" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.