该项目从 https://github.com/samtools/bcftools 镜像。
Pull mirroring failed .
由于尝试失败次数过多,仓库镜像已暂停,可以由项目维护者或所有者恢复。
上次成功更新 。
由于尝试失败次数过多,仓库镜像已暂停,可以由项目维护者或所有者恢复。
上次成功更新 。
- 5月 27, 2024
-
-
由 Petr Danecek 创作于
Previously the following expressions ID="@testid" ID="rs123" ID!="rs123" would not match the ID string "rs123;rs456" as expected. Resolves #2190
-
- 5月 24, 2024
-
-
由 Petr Danecek 创作于
-
由 Petr Danecek 创作于
Resolves #1484
-
由 Petr Danecek 创作于
-
由 Petr Danecek 创作于
-
由 Petr Danecek 创作于
-
- 5月 21, 2024
-
-
由 Petr Danecek 创作于
-
- 5月 15, 2024
-
-
由 Petr Danecek 创作于
For example, these variants should not be removed with `-d exact` POS=1 ALT=<DEL> SVLEN=-1000 POS=1 ALT=<DEL> SVLEN=-2000 POS=1 ALT=<DEL> SVLEN=-3000 Resolves #2182
-
由 Petr Danecek 创作于
-
由 Petr Danecek 创作于
The bug was introduced with the output format change in 1.19 which replaced the DC section with DCv2 https://github.com/samtools/bcftools/commit/983e610ab Fixes #2180
-
- 5月 05, 2024
-
-
由 Petr Danecek 创作于
The command `bcftools norm -m+` will not work when the merged genotypes have different ploidy. This commit attempts to fix that, but note that it is experimental and I am having doubts if it should be supported at all, given it may interfere with partially missing genotypes produces by atomization Resolves #1962
-
- 5月 04, 2024
-
-
由 James Bonfield 创作于
We move this to gcc instead.
-
由 James Bonfield 创作于
This doesn't change the test harness at all. It's simply extra documentation and scripts to aid with large scale evaluation of mpileup changes.
-
- 4月 30, 2024
-
-
由 Petr Danecek 创作于
-
- 4月 29, 2024
-
-
由 Petr Danecek 创作于
The user-format output of `bcftools query` and `bcftools +split-vep` prints column indices by default, e.g. "#[1]CHROM". This can be now suppressed by giving the option multiple times, `-HH` Resolves #2152
-
由 Petr Danecek 创作于
-
- 4月 27, 2024
-
-
由 Petr Danecek 创作于
Resolves #2160
-
由 Petr Danecek 创作于
see https://github.com/tecnickcom/variantkey Resolves #2157
-
由 Petr Danecek 创作于
Resolves #2153
-
由 Petr Danecek 创作于
similarly to symbolic <DEL.*> alleles added previously (7040c101) Resolves #2145
-
- 4月 19, 2024
-
-
由 Petr Danecek 创作于
For example, in the two cases below the field 'STR' from the -a file is required to match the INFO/TAG in VCF. In the first example the alleles REF,ALT must match, in the second example they are ignored. The option -k is required to output also records that were not annotated: bcftools annotate -a ann.tsv.gz -c CHROM,POS,REF,ALT,SCORE,~STR -i'TAG={STR}' -k in.vcf bcftools annotate -a ann.tsv.gz -c CHROM,POS,-,-,SCORE,~STR -i'TAG={STR}' -k in.vcf Resolves #2151
-
- 4月 15, 2024
-
-
由 Rob Davies 创作于
-
由 Rob Davies 创作于
-
由 Petr Danecek 创作于
-
由 Petr Danecek 创作于
-
由 Petr Danecek 创作于
-
由 Petr Danecek 创作于
-
- 4月 12, 2024
-
-
由 Petr Danecek 创作于
This needs more work, didn't realize that the effect of the -c option is to update the target VCF as well, so can't be used simply for matching. For that, probably a new prefix will need to be introduced, but that's already confusing as it is, for example ~ has double meaning. This reverts commit e9bff3fb. Switch to branch bt-2151-annotate-ext to see this code.
-
- 4月 11, 2024
-
-
由 Petr Danecek 创作于
For example, in the two cases below the field 'STR' from the -a file is required to match the INFO/TAG in VCF. In the first example the alleles REF,ALT must match, in the second example they are ignored. The option -k is required to output also records that were not annotated: bcftools annotate -a ann.tsv.gz -c CHROM,POS,REF,ALT,SCORE,STR -i'TAG={STR}' -k in.vcf bcftools annotate -a ann.tsv.gz -c CHROM,POS,-,-,SCORE,STR -i'TAG={STR}' -k in.vcf Resolves #2151
-
- 4月 03, 2024
-
-
由 Petr Danecek 创作于
-
- 4月 02, 2024
-
-
由 Petr Danecek 创作于
-
由 Petr Danecek 创作于
-
由 Petr Danecek 创作于
-
- 3月 28, 2024
-
-
由 John Marshall 创作于
Red Hat's ExtUtils::Embed returns CLAGS & LDFLAGS that produce a PIE position-independent executable. However libhts.a and the rest of bcftools's *.o files are not compiled as PIC, so linking fails as these other objects use relocations that are invalid for PIE. While bcftools could link against libhts.so and compile the rest of its objects with -fpic, the logistics are non-trivial. So it's easier to omit the redhat-hardened-cc1 and redhat-hardened-ld specs that set up for building a PIE executable. Fixes #1322.
-
由 James Bonfield 创作于
It stated "Missing the --fa-ref option", but the option is "--fasta-ref".
-
由 James Bonfield 创作于
Given --write-index now takes an optional argument, and optional long options are --long-opt=arg and short options are -larg, I chose to also accept -l=arg for the sake of consistency and ease of documentation. The standard -larg still works too. If we wish to stick strictly to the normal conventions, then this is a trivial change in version.c (and a search and replace in the documentation). Also fix formatting bug in bcftools merge man page section leading to a lot of underlined text. Fixes #2139
-
由 James Bonfield 创作于
-
由 James Bonfield 创作于
This was previously segmentation faulting as not being a string means it didn't set the key field. We now report it as a parse error.
-
由 James Bonfield 创作于
Previously only the last file had the index written.
-
由 James Bonfield 创作于
Note this is the only subcommand which defaults to writing TBI for VCF.gz. Everything else defaults to CSI. I'm unsure why this is, but I haven't changed it in this PR.
-