Changes between Initial Version and Version 2 of Ticket #1253
- Timestamp:
- Jun 4, 2020, 2:54:01 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1253 – Description
initial v2 5 5 Instead, we should use the name of the Alignment item. 6 6 7 Existing VCF files should be manually fixed (with help of some clever grep/sed/awk/... commands). 7 Existing VCF files should be manually fixed (with help of some clever grep/sed/awk/... commands). Basically we can do `sed 's/S0123456.l.r.m.c.lib/S0123456.l.r.m.c.lib.g.k2.a/'` to replace all library names (`S0123456.l.r.m.c.lib`) with alignment names (`S0123456.l.r.m.c.lib.g.k2.a`). The `variants-filtered.vcf` file is not compressed and this can be done in-place with the -i flag to sed. But the raw and annotated files are compressed with bgzip so we need to decompress and re-compress before and after and probably need to store the result in a temporary file before overwriting the original file.