Giulio Genovese

Results 28 issues of Giulio Genovese

I obtain this reproducible issue with gatk 4.1.3.0: First of all, you have to download the mini input.bam file from this dropbox link: https://www.dropbox.com/sh/78rz5wrhu9zkfzh/AACW9ZPhl4WnD-wmAkKcdHT3a?dl=0 Then setup a GATK working environment:...

bug
HaplotypeCaller
Mutect

After running a large workflow on GCS with ~2,500 tasks, rather than the workflow transitioning from running to success, I received the following error: ``` "status": "Failed", "failures": [ {...

``` $ echo 'version development workflow main { call main { input: s1 = "x", s2 = "y" } output { Array[File] f = main.f } } task main {...

A very simple WDL: ``` version development task sfx { input { Array[String] x String docker = "ubuntu:20.04" } command > output { Array[String] x_sfx = suffix(".sfx", x) } runtime...

While trying to pull a docker with Cromwell 58, I get the following error: `"message": "Task xxx.xxx:0:1 failed. The job was stopped before the command finished. PAPI error code 2....

Here is a very simple WDL (test.wdl): ``` version 1.0 workflow test { input { Array[File] list } call test { input: list = list } } task test {...

If I attempt to add a header string to a VCF header using `bcf_hdr_append()`, the string gets passed to the function `bcf_hdr_parse_line()` which parses the key and passes it to...

How do you test whether you are at the end of an `hFILE`? The simplest way I could come up is the following: ``` if ( hgetc(fp) != EOF )...

I am trying to use the +fixref plugin to fix a VCF after a liftOver operation. I have two issues. The first issue relates to the following code: ``` else...

enhancement

This is a bit of a weird corner case, but if I have a VCF file with two identical variants `chr1 20000 A G`: ``` (echo "##fileformat=VCFv4.2" echo "##contig=" echo...