You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clair3-RNA is a small variant caller for RNA long-read data. Clair3-RNA supports ONT complementary DNA sequencing (cDNA) and direct RNA sequencing (dRNA). dRNA sequencing support the ONT latest [SQK-RNA004 kit](https://community.nanoporetech.com/docs/prepare/library_prep_protocols/direct-rna-sequencing-sqk-rna004/v/drs_9195_v4_revd_20sep2023) data for variant calling. Clair3-RNA also supports PacBio Sequel and PacBio MAS-Seq RNA sequencing data.
17
+
Clair3-RNA is a small variant caller for RNA long-read data. Clair3-RNA supports ONT complementary DNA sequencing (cDNA) and direct RNA sequencing (dRNA). dRNA sequencing support the ONT latest [SQK-RNA004 kit](https://community.nanoporetech.com/docs/prepare/library_prep_protocols/direct-rna-sequencing-sqk-rna004/v/drs_9195_v4_revd_20sep2023) data for variant calling. Clair3-RNA also supports PacBio Sequel and PacBio MAS-Seq RNA sequencing data. Clair3-RNA reached a ~95% F1-score for ONT dRNA using SQK-RNA004 kit and ~96% F1-score using PacBio Iso-Seq and MAS-Seq, respectively, with at least ten supporting reads and disregarding the zygosity. With read phased, the performance reached ~97% for ONT and ~98% for PacBio.
18
18
19
19
For germline small variant calling, please use [Clair3](https://github.com/HKU-BAL/Clair3).
20
20
@@ -39,6 +39,8 @@ For somatic small variant calling using tumor sample only, please try [ClairS-TO
39
39
----
40
40
41
41
## Latest Updates
42
+
*v0.2.0 (Nov 18, 2024)* : 1. Added a new pileup phasing model (enable by using `--enable_phasing_model` opiton) for ONT dRNA004(`ont_dorado_drna004`), PacBio Iso-Seq(`hifi_sequel2_minimap2`), and PacBio MAS-Seq(`hifi_mas_minimap2`), the SNP performance improved by ~2% and Indel performance improved by ~6%. 2. Fixed some formatting issues in the calling workflow.
43
+
42
44
*v0.1.0 (Aug 15, 2024)* : 1. Added a new ONT dRNA004 direct RNA sequencing model (`ont_dorado_drna004`) for SQK-RNA004 kit. 2. Added new PacBio Sequel (`hifi_sequel2_minimap2`) and Revio (`hifi_mas_minimap2`) model to support minimap2 alignment. 3. Enhance model training techniques to boost performance by incorporating strategies such as managing low-coverage sites, verifying variant zygosity, filtering RNA editing sites, etc. 4. Renamed all ONT and PacBio model names, check [here](https://github.com/HKU-BAL/Clair3-RNA?tab=readme-ov-file#pre-trained-models) for more details.
43
45
44
46
*v0.0.1 (Nov 27, 2023)*: Initial release for early access.
@@ -99,7 +101,8 @@ docker run -it \
99
101
--ref_fn ${INPUT_DIR}/ref.fa \ ## use your reference file name here
100
102
--threads ${THREADS}\ ## maximum threads to be used
VCF file input containing candidate sites to be genotyped. Variants will only be called at the sites in the VCF file if provided.
235
240
-q QUAL, --qual QUAL If set, variants with >QUAL will be marked as PASS, or LowQual otherwise.
241
+
--enable_phasing_model
242
+
Enable phasing with whatshap or longphase. Usually leads to performance improvement when coverage is sufficient. Default: False.
236
243
--snp_min_af SNP_MIN_AF
237
244
Minimal SNP AF required fora variant to be called. Decrease SNP_MIN_AF might increase a bit of sensitivity, butin trade of precision, speed and accuracy. Default: 0.08.
238
245
--indel_min_af INDEL_MIN_AF
@@ -256,11 +263,20 @@ docker run -it hkubal/clair3-rna:latest /opt/bin/clair3_rna --help
256
263
--include_all_ctgs Call variants on all contigs, otherwise call in chr{1..22} and {1..22}.
257
264
--print_ref_calls Show reference calls (0/0) in VCF file.
258
265
-d, --dry_run Print the commands that will be ran.
266
+
--min_mq MIN_MQ Minimal mapping quality required for an alignment to be considered. Default: 5.
Specify the path prefix to your own pileup phasing model. Including ${phased_pileup_model_path}.data-00000-of-00001, ${phased_pileup_model_path}.index.
259
269
--python PYTHON Absolute path of python, python3 >= 3.9 is required.
260
270
--pypy PYPY Absolute path of pypy3, pypy3 >= 3.6 is required.
261
271
--samtools SAMTOOLS Absolute path of samtools, samtools version >= 1.10 is required.
262
272
--parallel PARALLEL Absolute path of parallel, parallel >= 20191122 is required.
263
-
--min_mq MIN_MQ Minimal mapping quality required for an alignment to be considered. Default: 5.
273
+
--longphase LONGPHASE
274
+
Absolute path of longphase, longphase >= 1.7 is required.
275
+
--whatshap WHATSHAP Absolute path of whatshap, whatshap >= 1.0 is required.
0 commit comments