Skip to content
This repository has been archived by the owner on Jan 25, 2020. It is now read-only.

Commit

Permalink
shifted imports to git release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bshifaw committed Mar 14, 2019
1 parent 89f11be commit cbb46d8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 19 deletions.
15 changes: 8 additions & 7 deletions fc_germline_single_sample_workflow.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##
## This WDL pipeline implements data pre-processing and initial variant calling (GVCF
## generation) according to the GATK Best Practices (June 2016) for germline SNP and
## Indel discovery in human whole-genome.
## Indel discovery in human whole-genome sequencing data.
##
## Requirements/expectations :
## - Human whole-genome pair-end sequencing data in unmapped BAM (uBAM) format
Expand All @@ -26,12 +26,13 @@
## page at https://hub.docker.com/r/broadinstitute/genomes-in-the-cloud/ for detailed
## licensing information pertaining to the included programs.
import "https://api.firecloud.org/ga4gh/v1/tools/gatk:alignment/versions/2/plain-WDL/descriptor" as Alignment
import "https://api.firecloud.org/ga4gh/v1/tools/gatk:split-large-readgroup/versions/2/plain-WDL/descriptor" as SplitRG
import "https://api.firecloud.org/ga4gh/v1/tools/gatk:quality-control/versions/1/plain-WDL/descriptor" as QC
import "https://api.firecloud.org/ga4gh/v1/tools/gatk:bam-processing/versions/2/plain-WDL/descriptor" as Processing
import "https://api.firecloud.org/ga4gh/v1/tools/gatk:germline-variant-discovery/versions/2/plain-WDL/descriptor" as Calling
import "https://api.firecloud.org/ga4gh/v1/tools/gatk:utilities/versions/1/plain-WDL/descriptor" as Utils

import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/alignment.wdl" as Alignment
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/split_large_readgroup.wdl" as SplitRG
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/qc.wdl" as QC
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/bam_processing.wdl" as Processing
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/germline_variant_discovery.wdl" as Calling
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/utilities.wdl" as Utils

# WORKFLOW DEFINITION
workflow germline_single_sample_workflow {
Expand Down
13 changes: 9 additions & 4 deletions germline_single_sample_workflow.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,15 @@
## page at https://hub.docker.com/r/broadinstitute/genomes-in-the-cloud/ for detailed
## licensing information pertaining to the included programs.
import "./tasks_pipelines/unmapped_bam_to_aligned_bam.wdl" as ToBam
import "./tasks_pipelines/germline_variant_discovery.wdl" as Calling
import "./tasks_pipelines/qc.wdl" as QC
import "./tasks_pipelines/utilities.wdl" as Utils
#import "./tasks_pipelines/unmapped_bam_to_aligned_bam.wdl" as ToBam
#import "./tasks_pipelines/germline_variant_discovery.wdl" as Calling
#import "./tasks_pipelines/qc.wdl" as QC
#import "./tasks_pipelines/utilities.wdl" as Utils
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/unmapped_bam_to_aligned_bam.wdl" as Processing
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/germline_variant_discovery.wdl" as Calling
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/qc.wdl" as QC
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/utilities.wdl" as Utils

# WORKFLOW DEFINITION
workflow germline_single_sample_workflow {
Expand Down
6 changes: 3 additions & 3 deletions tasks_pipelines/split_large_readgroup.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
## page at https://hub.docker.com/r/broadinstitute/genomes-in-the-cloud/ for detailed
## licensing information pertaining to the included programs.
import "./tasks_pipelines/alignment.wdl" as Alignment
import "./tasks_pipelines/bam_processing.wdl" as Processing
import "./tasks_pipelines/utilities.wdl" as Utils
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/alignment.wdl" as Alignment
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/bam_processing.wdl" as Processing
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines//utilities.wdl" as Utils

workflow split_large_readgroup {
File input_bam
Expand Down
10 changes: 5 additions & 5 deletions tasks_pipelines/unmapped_bam_to_aligned_bam.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
## page at https://hub.docker.com/r/broadinstitute/genomes-in-the-cloud/ for detailed
## licensing information pertaining to the included programs.
import "./tasks_pipelines/alignment.wdl" as Alignment
import "./tasks_pipelines/split_large_readgroup.wdl" as SplitRG
import "./tasks_pipelines/qc.wdl" as QC
import "./tasks_pipelines/bam_processing.wdl" as Processing
import "./tasks_pipelines/utilities.wdl" as Utils
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/alignment.wdl" as Alignment
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/split_large_readgroup.wdl" as SplitRG
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/qc.wdl" as QC
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/bam_processing.wdl" as Processing
import "https://raw.githubusercontent.com/gatk-workflows/five-dollar-genome-analysis-pipeline/1.0.3/tasks_pipelines/utilities.wdl" as Utils

# WORKFLOW DEFINITION
workflow to_bam_workflow {
Expand Down

0 comments on commit cbb46d8

Please sign in to comment.