Skip to content

Commit

Permalink
Merge branch 'release/0.7.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Cooke committed May 4, 2021
2 parents 512766d + 6fe26e0 commit ed012a6
Show file tree
Hide file tree
Showing 17 changed files with 995 additions and 52 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ project(octopus)

set(octopus_VERSION_MAJOR 0)
set(octopus_VERSION_MINOR 7)
set(octopus_VERSION_PATCH 3)
set(octopus_VERSION_PATCH 4)
set(octopus_VERSION_RELEASE "")

# Generate list of compile commands. This helps debugging and doesn't have a downside.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ Octopus will generate BAM files `realigned/NA12878.bam` and `realigned/NA24385.b

## Output format

Octopus outputs variants in the [VCF 4.3 format](https://github.com/samtools/hts-specs/blob/master/VCFv4.3.pdf). To represent complex multi-allelic loci, Octopus prefers a decompose alleles into multiple records and use the `*` allele to resoolve conflicts, for example:
Octopus outputs variants in the [VCF 4.3 format](https://github.com/samtools/hts-specs/blob/master/VCFv4.3.pdf). To represent complex multi-allelic loci, Octopus prefers to decompose alleles into multiple records and use the `*` allele to resolve conflicts, for example:

```
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT NA12878
Expand All @@ -366,14 +366,14 @@ in contrast to how such a site would usually be represented, either:
1 102738191 . ATTATTTATTTAT A . . . GT 1/0
```

which is inconsistent as the reference is deduced in each record, or:
which is inconsistent as existence of the reference allele is implied in each record, or:

```
#CHROM POS ID REF ALT QUAL FILTER INFO FORMAT NA12878
1 102738191 . ATTATTTATTTAT ATTAT,A . . . GT 1/2
```

which is at least consistent, but rapidly becomes unmanageable as the length and number of overlapping variants increases.
which is consistent, but rapidly becomes unmanageable as the length and number of overlapping variants increases.

## Documentation

Expand Down
3 changes: 2 additions & 1 deletion lib/date/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ set(DATE_SOURCES
tz.h
tz.cpp
tz_private.h
ios.h)
ios.h
ptz.h)

add_library(date-tz STATIC ${DATE_SOURCES})

Expand Down
Loading

0 comments on commit ed012a6

Please sign in to comment.