-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about --read_proba_threshold in m6anet inference #177
Comments
Hi @cxy-26, mod_ratio is the number for read with read-level probabilities over the Thanks! Best wishes, |
hi @cxy-26, i also have DRS reads sequenced with RNA004 chemistry for a plant species (~15 million reads/sample). i did use the plant model (RNA002), but the results shows very low (~3000) number of m6A sites per sample. |
Hi @baibhav-bioinfo, I am sorry that I can't answer your question since all my samples are human cell line. Have you tried to use RNA004 human cell line model for your plant sample or to train your own model? And I guess you at the wrong person? Best |
Thanks for your explaination. I'll doublecheck my code and results. |
Thanks for the response and also apologies for the bothering. what would you suggest will be best in my case? using RNA004 human model or RNA002 based plant model? |
Hi,
I am working on Nanopore direct RNA-seq RNA004 chemistry. I have a question about the --read_proba_threshold in m6anet inference step. I tried the threshold with default value (0.033379376), 0.05 and 0.5 but there is no difference in the output data.site_proba.csv datasets.
m6anet inference --input_dir ./ --out_dir ./ --pretrained_model HEK293T_RNA004 --n_processes 16 --num_iterations 1000
m6anet inference --input_dir ./ --out_dir ./threshold_0.05/ --pretrained_model HEK293T_RNA004 --n_processes 16 --num_iterations 1000 --read_proba_threshold 0.05
m6anet inference --input_dir ./ --out_dir ./threshold_0.5/ --pretrained_model HEK293T_RNA004 --n_processes 16 --num_iterations 1000 --read_proba_threshold 0.5
I expected a decrease of mod_ratio as the threshold increases since the mod_ratio column is calculated by thresholding the probability_modified from data.indiv_proba.csv based on the --read_proba_threshold parameter during m6anet inference call.
Summary of mod_ratio with default threshold:
Summary of mod_ratio with threshold=0.05:
Summary of mod_ratio with threshold=0.5:
I am wordering whether this --read_proba_threshild worked or not.
Or I misunderstood the way it calulates the mod_ratio.
The text was updated successfully, but these errors were encountered: