-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathtest_whole_genome_reprocessing.yml
More file actions
81 lines (77 loc) · 3.15 KB
/
Copy pathtest_whole_genome_reprocessing.yml
File metadata and controls
81 lines (77 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Test WholeGenomeReprocessing
# Controls when the workflow will run
on:
pull_request:
branches: [ "develop", "staging", "master" ]
# Only run if files in these paths changed:
####################################
# SET PIPELINE SPECIFIC PATHS HERE #
####################################
paths:
# anything in the pipelines folder
- 'pipelines/wdl/reprocessing/wgs/**'
- 'pipelines/wdl/dna_seq/germline/single_sample/wgs/WholeGenomeGermlineSingleSample.wdl'
# tasks from the pipeline WDL and their dependencies
- 'structs/dna_seq/DNASeqStructs.wdl'
- 'tasks/wdl/Alignment.wdl'
- 'tasks/wdl/DragmapAlignment.wdl'
- 'tasks/wdl/SplitLargeReadGroup.wdl'
- 'tasks/wdl/BamProcessing.wdl'
- 'tasks/wdl/Utilities.wdl'
- 'tasks/wdl/Qc.wdl'
- 'tasks/wdl/AggregatedBamQC.wdl'
- 'tasks/wdl/BamToCram.wdl'
- 'pipelines/wdl/dna_seq/germline/variant_calling/VariantCalling.wdl'
- 'pipelines/wdl/reprocessing/cram_to_unmapped_bams/CramToUnmappedBams.wdl'
- 'tasks/wdl/GermlineVariantDiscovery.wdl'
- 'tasks/wdl/DragenTasks.wdl'
# verification WDL and its dependencies
- 'verification/VerifyExomeReprocessing.wdl'
- 'verification/VerifyGermlineSingleSample.wdl'
- 'verification/VerifyMetrics.wdl'
- 'verification/VerifyTasks.wdl'
# test WDL and its dependencies
- 'verification/test-wdls/TestWholeGenomeGermlineSingleSample.wdl'
- 'tasks/wdl/TerraCopyFilesFromCloudToCloud.wdl'
# this file, the subworkflow file, and the firecloud_api script
- '.github/workflows/test_whole_genome_reprocessing.yml'
- '.github/workflows/warp_test_workflow.yml'
- 'scripts/firecloud_api/firecloud_api.py'
# dependencies imported by the test WDL but previously unwatched
- 'tasks/wdl/UnmappedBamToAlignedBam.wdl'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
useCallCache:
description: 'Use call cache (default: true)'
required: false
default: "true"
updateTruth:
description: 'Update truth files (default: false)'
required: false
default: "false"
testType:
description: 'Specify the type of test (Plumbing or Scientific)'
required: false
type: choice
options:
- Plumbing
- Scientific
truthBranch:
description: 'Specify the branch for truth files (default: master)'
required: false
default: "master"
jobs:
TestWholeGenomeReprocessing:
uses: ./.github/workflows/warp_test_workflow.yml
with:
pipeline_name: TestWholeGenomeReprocessing
dockstore_pipeline_name: WholeGenomeReprocessing
pipeline_dir: pipelines/wdl/reprocessing/wgs
use_call_cache: ${{ github.event.inputs.useCallCache || 'true' }}
update_truth: ${{ github.event.inputs.updateTruth || 'false' }}
test_type: ${{ github.event.inputs.testType }}
truth_branch: ${{ github.event.inputs.truthBranch || 'master' }}
secrets:
PDT_TESTER_SA_B64: ${{ secrets.PDT_TESTER_SA_B64 }}
DOCKSTORE_TOKEN: ${{ secrets.DOCKSTORE_TOKEN }}