This file contains hidden or 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
| version 1.0 | |
| task PreprocessIntervals { | |
| input { | |
| File? intervals | |
| File? blacklist_intervals | |
| File ref_fasta | |
| File ref_fasta_fai | |
| File ref_fasta_dict | |
| Int? padding |
This file contains hidden or 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
| # based on https://github.com/Ensembl/ensembl-vep/blob/release/112/docker/Dockerfile | |
| # but with everything installed as root (to make it easier to run on files in /cromwell_root) | |
| ARG BRANCH=release/113 | |
| ################################################### | |
| # Stage 1 - docker container to build ensembl-vep # | |
| ################################################### | |
| FROM ubuntu:22.04 AS builder | |
| # Update aptitude and install some required packages |
This file contains hidden or 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
| [ | |
| { | |
| "name": "age", | |
| "type": "integer", | |
| "description": "age of donor at time of sampling", | |
| "required": false, | |
| "unique": false | |
| }, | |
| { | |
| "name": "age_category", |
OlderNewer