22
22
*/
23
23
24
24
nextflow. enable. dsl = 2
25
- version = ' 1.0.3 '
25
+ version = ' 1.1.0 '
26
26
27
27
// universal params go here, change default value as needed
28
28
params. container = " "
@@ -44,10 +44,11 @@ params.download_mode="local"
44
44
params. song_container = " ghcr.io/overture-stack/song-client"
45
45
params. song_container_version = " 5.0.2"
46
46
params. score_container = " ghcr.io/overture-stack/score"
47
- params. score_container_version = " 5.9 .0"
47
+ params. score_container_version = " 5.10 .0"
48
48
params. score_mem = 20
49
49
params. score_cpus = 8
50
50
params. score_force = false
51
+ params. skip_upload = false
51
52
52
53
// sanityChecks
53
54
params. song_url= " "
@@ -58,7 +59,7 @@ params.api_token=""
58
59
// payloadJsonToTsvs
59
60
params. data_directory= " NO_FILE1"
60
61
params. skip_duplicate_check= false
61
-
62
+ params . skip_sanity_check = false
62
63
// payloadGenSeqExperiment
63
64
params. schema_url= " "
64
65
params. experiment_info_tsv= " NO_FILE2"
@@ -237,6 +238,19 @@ workflow ArgoDataSubmissionWf {
237
238
clinical_url
238
239
main :
239
240
241
+ if (! " ${ workflow.profile} " . contains(' docker' ) && ! " ${ workflow.profile} " . contains(' singularity' )){
242
+ exit 1 , " Error Missing profile. `-profile` must be specified with the engines :`docker` or `singularity`."
243
+ }
244
+ if (! " ${ workflow.profile} " . contains(' rdpc_qa' ) && ! " ${ workflow.profile} " . contains(' rdpc_dev' ) && ! " ${ workflow.profile} " . contains(' rdpc' )){
245
+ exit 1 , " Error Missing profile. `-profile` must be specified with the rdpc environments : `rdpc_qa`,`rdpc_dev`, or `rdpc`."
246
+ }
247
+
248
+ if (! params. api_token){
249
+ if (! params. api_download_token || ! params. api_upload_token) {
250
+ exit 1 , " Error SONG parameters detected but missing token params. `--api_token` or `api_upload_token` and `api_download_token` must be supplied when uploading."
251
+ }
252
+ }
253
+
240
254
if (
241
255
og_experiment_info_tsv. startsWith(" NO_FILE" ) && \
242
256
og_read_group_info_tsv. startsWith(" NO_FILE" ) && \
@@ -278,29 +292,41 @@ workflow ArgoDataSubmissionWf {
278
292
file(data_directory)
279
293
)
280
294
281
- sanityCheck(
282
- payloadJsonToTsvs. out. experiment_tsv,
283
- api_token,
284
- song_url,
285
- clinical_url,
286
- params. skip_duplicate_check
287
- )
288
-
289
- experiment_info_tsv= sanityCheck. out. updated_experiment_info_tsv
290
- read_group_info_tsv= payloadJsonToTsvs. out. read_group_tsv
291
- file_info_tsv= payloadJsonToTsvs. out. file_tsv
295
+ if (params. skip_sanity_check){
296
+ experiment_info_tsv= file(payloadJsonToTsvs. out. experiment_tsv)
297
+ read_group_info_tsv= file(og_read_group_info_tsv)
298
+ file_info_tsv= file(og_file_info_tsv)
299
+ } else {
300
+ sanityCheck(
301
+ payloadJsonToTsvs. out. experiment_tsv,
302
+ api_token,
303
+ song_url,
304
+ clinical_url,
305
+ params. skip_duplicate_check
306
+ )
307
+
308
+ experiment_info_tsv= sanityCheck. out. updated_experiment_info_tsv
309
+ read_group_info_tsv= file(og_read_group_info_tsv)
310
+ file_info_tsv= file(og_file_info_tsv)
311
+ }
292
312
} else {
293
- sanityCheck(
294
- file(og_experiment_info_tsv),
295
- api_token,
296
- song_url,
297
- clinical_url,
298
- params. skip_duplicate_check
299
- )
300
-
301
- experiment_info_tsv= sanityCheck. out. updated_experiment_info_tsv
302
- read_group_info_tsv= file(og_read_group_info_tsv)
303
- file_info_tsv= file(og_file_info_tsv)
313
+ if (params. skip_sanity_check){
314
+ experiment_info_tsv= file(og_experiment_info_tsv)
315
+ read_group_info_tsv= file(og_read_group_info_tsv)
316
+ file_info_tsv= file(og_file_info_tsv)
317
+ } else {
318
+ sanityCheck(
319
+ file(og_experiment_info_tsv),
320
+ api_token,
321
+ song_url,
322
+ clinical_url,
323
+ params. skip_duplicate_check
324
+ )
325
+
326
+ experiment_info_tsv= sanityCheck. out. updated_experiment_info_tsv
327
+ read_group_info_tsv= file(og_read_group_info_tsv)
328
+ file_info_tsv= file(og_file_info_tsv)
329
+ }
304
330
}
305
331
306
332
checkCramReference(
@@ -362,20 +388,22 @@ workflow ArgoDataSubmissionWf {
362
388
skipping_tests
363
389
)
364
390
365
- uploadWf(
366
- study_id,
367
- valSeq. out. validated_payload,
368
- sequence_files. collect(),
369
- ' '
370
- )
371
-
372
- submissionReceipt(
391
+ if (! params. skip_upload){
392
+ uploadWf(
373
393
study_id,
374
- uploadWf. out. analysis_id,
375
- song_url,
376
- params. skip_submission_check,
377
- sequence_files. collect()
378
- )
394
+ valSeq. out. validated_payload,
395
+ sequence_files. collect(),
396
+ ' '
397
+ )
398
+
399
+ submissionReceipt(
400
+ study_id,
401
+ uploadWf. out. analysis_id,
402
+ song_url,
403
+ params. skip_submission_check,
404
+ sequence_files. collect()
405
+ )
406
+ }
379
407
380
408
} else if (checkCramReference. out. check_status && ! ref_genome_fa. startsWith(" NO_FILE" )){
381
409
// If reference genome is provided...
@@ -403,52 +431,62 @@ workflow ArgoDataSubmissionWf {
403
431
sequence_files. collect(). concat(cram2bam. out. output_bam. collect()). collect(),
404
432
skipping_tests
405
433
)
406
-
407
- uploadWf(
408
- study_id,
409
- valSeq. out. validated_payload,
410
- not_cram_sequence_files. concat(cram2bam. out. output_bam. collect()). collect(),
411
- ' '
412
- )
413
-
414
- submissionReceipt(
434
+ if (! params. skip_upload){
435
+ uploadWf(
415
436
study_id,
416
- uploadWf. out. analysis_id,
417
- song_url,
418
- params. skip_submission_check,
437
+ valSeq. out. validated_payload,
419
438
not_cram_sequence_files. concat(cram2bam. out. output_bam. collect()). collect(),
420
- )
439
+ ' '
440
+ )
441
+
442
+ submissionReceipt(
443
+ study_id,
444
+ uploadWf. out. analysis_id,
445
+ song_url,
446
+ params. skip_submission_check,
447
+ not_cram_sequence_files. concat(cram2bam. out. output_bam. collect()). collect()
448
+ )
449
+ }
421
450
}
422
- if (params. cleanup && params. download_mode!= ' local' && ref_genome_fa. startsWith(" NO_FILE" )) {
451
+ if (params. cleanup && params. download_mode!= ' local' && ref_genome_fa. startsWith(" NO_FILE" ) && ! params . skip_upload ) {
423
452
// only cleanup the sequence files when they are not from local
424
453
cleanup(
425
454
sequence_files. collect(),
426
455
submissionReceipt. out. receipt // wait until upload is done
427
456
)
428
- } else if (params. cleanup && params. download_mode!= ' local' && ! ref_genome_fa. startsWith(" NO_FILE" )){
457
+ } else if (params. cleanup && params. download_mode!= ' local' && ! ref_genome_fa. startsWith(" NO_FILE" ) && ! params . skip_upload ){
429
458
// only cleanup the sequence files and cram2bam output when they are not from local
430
459
cleanup(
431
460
sequence_files. collect(). concat(cram2bam. out. output_bam. collect()). collect(),
432
461
submissionReceipt. out. receipt // wait until upload is done
433
462
)
434
- } else if (params. cleanup && params. download_mode== ' local' && ! ref_genome_fa. startsWith(" NO_FILE" )){
463
+ } else if (params. cleanup && params. download_mode== ' local' && ! ref_genome_fa. startsWith(" NO_FILE" ) && ! params . skip_upload ){
435
464
// only cleanup output from cram2bam on local
436
465
cleanup(
437
466
cram2bam. out. output_bam. collect(),
438
467
submissionReceipt. out. receipt // wait until upload is done
439
468
)
440
469
}
441
470
442
- printOut(
443
- pGenExp. out. payload,
444
- uploadWf. out. analysis_id,
445
- submissionReceipt. out. receipt
446
- )
471
+ if (! params. skip_upload){
472
+ printOut(
473
+ pGenExp. out. payload,
474
+ uploadWf. out. analysis_id,
475
+ submissionReceipt. out. receipt
476
+ )
477
+ out_payload = pGenExp. out. payload
478
+ out_analysis_id = uploadWf. out. analysis_id
479
+ out_receipt = submissionReceipt. out. receipt
480
+ } else {
481
+ out_payload = null
482
+ out_analysis_id = null
483
+ out_receipt = null
484
+ }
447
485
448
486
emit :
449
- json_file = pGenExp . out . payload
450
- output_analysis_id = uploadWf . out . analysis_id
451
- receipt = submissionReceipt . out . receipt
487
+ out_json_file = out_payload
488
+ out_output_analysis_id = out_analysis_id
489
+ out_receipt = out_receipt
452
490
}
453
491
454
492
// this provides an entry point for this main script, so it can be run directly without clone the repo
@@ -467,4 +505,4 @@ workflow {
467
505
params. song_url,
468
506
params. clinical_url
469
507
)
470
- }
508
+ }
0 commit comments