|
11 | 11 |
|
12 | 12 | ## Updates (pre-release v0.0.5) |
13 | 13 |
|
| 14 | +* Add -s/--somatic/--mosaic to output low AF somatic/mosaic variant |
| 15 | +* Add -T/--trans-elem; output TE (transposable/mobile element, Alu/L1/SVA) information for INS/DEL |
| 16 | +* Add INFO:TSD;REPNAME in VCF for TE INS/DEL |
| 17 | +* Add --refine-aln: refine read alignment based on MSA in output SAM/BAM/CRAM |
14 | 18 | * Fix a SegFault in ONT mode regarding BAM/SA tag |
15 | | -* Significant speed improvement (compiling mistake in last release) |
16 | | -* Add --refine-aln: refine read alignment based on MSA in output BAM/CRAM |
| 19 | +<!-- * Significant speed improvement (compiling mistake in last release) --> |
17 | 20 | * Add -Oz for compressed VCF output |
18 | | -* Add -s/--somatic to output somatic/mosaic variant |
19 | 21 | * Add --exclude-ctg & --all-ctg; --autosome-XY is default now |
20 | | -* Add -T/--trans-elem; output TE (transposable/mobile element, Alu/L1/SVA) information for INS/DEL |
21 | | -* Add INFO:TSD;REPNAME in VCF for TE INS/DEL |
22 | 22 | <!-- * Add INFO:TANDAM in VCF for tandem duplications --> |
23 | 23 | * Fix lower case ref base |
24 | 24 | * Fix compiling in macOS-x64 |
@@ -107,6 +107,16 @@ longcallD call -t16 ref.fa hifi.bam > hifi.vcf # default for PacBio HiFi |
107 | 107 | longcallD call -t16 ref.fa ont.bam --ont > ont.vcf # for ONT reads |
108 | 108 | ``` |
109 | 109 |
|
| 110 | +### Low allele-frequency mosaic variant calling |
| 111 | +With `-s`, longcallD will detect both germline and somatic/mosaic variants. |
| 112 | + |
| 113 | +For each somatic/mosaic variant, a `SOMATIC` tag will be added to the INFO field in the output VCF. |
| 114 | +``` |
| 115 | +longcallD call -s -t16 ref.fa hifi.bam > hifi.vcf |
| 116 | +longcallD call -s -t16 ref.fa hifi.bam -T AluY_L1_SVA_cons_noPA.fa > hifi.vcf # add MEI information in INFO field |
| 117 | +longcallD call -s -t16 ref.fa ont.bam --ont > ont.vcf |
| 118 | +``` |
| 119 | + |
110 | 120 | ### Region-specific variant calling |
111 | 121 | LongcallD supports region-based variant calling, similar to `samtools view`. |
112 | 122 | ``` |
|
0 commit comments