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
When running "compare_junctions_hist_v2.R", there were multiple NA values in "mean_norm_score_variant". I traced it back to the function starting on line 204, where the unlist (strsplit) functions are needed for the first condition too (added below).
The example workflow recommends using --variant-grouping=exclude when running stats_wrapper.py. Is there an equivalent feature in "compare_junctions_hist_v2.R"?
There are duplicates (records with same variant_junction_info) in the final dataset after running "compare_junctions_hist_v2.R". Do you recommend de-duplicating them? If so, how?
a <- function(x, y){
# if(y == "TCGA-ZH-A8Y2-01A,TCGA-ZH-A8Y5-01A"){
# browser()
# }
toAdd <- (str_count(y, ',') + 1) - (str_count(x, ',') + 1)
# browser()
if (toAdd > 0) {
toAdd <- rep(0.0000000, toAdd)
x <- c(unlist(strsplit(x, ",")), toAdd) # added unlist(strsplit) here too
} else {
x <- unlist(strsplit(x, ","))
}
x <- list(x)
return(x)
}
The text was updated successfully, but these errors were encountered:
I am still encountering this same issues and others already reported in the compare_junctions of the example WF #153.
@R-Najjar have you been able to gain any insights on your questions?
I have also tried the python version compare_jucntions_hist.py and got a different errors when merging the score data of the samples_with_variants and the samples_wout_variants.
Thank you for making this super useful software.
When running "compare_junctions_hist_v2.R", there were multiple NA values in "mean_norm_score_variant". I traced it back to the function starting on line 204, where the unlist (strsplit) functions are needed for the first condition too (added below).
The example workflow recommends using --variant-grouping=exclude when running stats_wrapper.py. Is there an equivalent feature in "compare_junctions_hist_v2.R"?
There are duplicates (records with same variant_junction_info) in the final dataset after running "compare_junctions_hist_v2.R". Do you recommend de-duplicating them? If so, how?
The text was updated successfully, but these errors were encountered: