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
In https://hbctraining.github.io/scRNA-seq_online/lessons/09_merged_SC_marker_identification.html
adding annotations in the loop using the following method results in a many-to-many warning (when using methods to download annotations using annotationHub). This is because unique(annotations[, c("gene_name", "description")]) only finds unique gene_name/description combinations, but there are often gene repeats where genes with the same gene_name have slightly different descriptions due to being from different seq_names (such as being from a patch). For me, the many-to-many warning does not pop up when in the loop below but pops up if assigning to a single object, like the results of running FindAllMarkers. Despite the warning not popping up in the loop, I found instances of repeat gene names in my FindConservedMarkers output, with the same p values, fold changes, etc (this is what tipped me off to investigate this problem).
I downloaded annotations from annotationHub using methods outlined in another lesson section, rather than the annotations.csv example file. I'm not sure if this issue exists in the annotations.csv file, but regardless it creates some issue applying the lesson to real world analysis.
In https://hbctraining.github.io/scRNA-seq_online/lessons/09_merged_SC_marker_identification.html
adding annotations in the loop using the following method results in a many-to-many warning (when using methods to download annotations using annotationHub). This is because
unique(annotations[, c("gene_name", "description")])
only finds unique gene_name/description combinations, but there are often gene repeats where genes with the same gene_name have slightly different descriptions due to being from different seq_names (such as being from a patch). For me, the many-to-many warning does not pop up when in the loop below but pops up if assigning to a single object, like the results of running FindAllMarkers. Despite the warning not popping up in the loop, I found instances of repeat gene names in my FindConservedMarkers output, with the same p values, fold changes, etc (this is what tipped me off to investigate this problem).I downloaded annotations from annotationHub using methods outlined in another lesson section, rather than the annotations.csv example file. I'm not sure if this issue exists in the annotations.csv file, but regardless it creates some issue applying the lesson to real world analysis.
The text was updated successfully, but these errors were encountered: