Spaces:
Sleeping
Sleeping
JiawenChenn
commited on
Commit
·
67214ea
1
Parent(s):
ce2e585
update
Browse files- app.R +1 -0
- rank_threshold.csv +21 -0
app.R
CHANGED
|
@@ -66,6 +66,7 @@ time = reshape2::melt(time,id.vars = c('slide')) %>% rename(method=variable,time
|
|
| 66 |
mutate(method = alter_method_name(method)) %>%
|
| 67 |
left_join(human_slides)
|
| 68 |
method_color_table = fread('method_colors.csv');method_colors = method_color_table$color;names(method_colors) = method_color_table$method
|
|
|
|
| 69 |
|
| 70 |
na.omit(time)
|
| 71 |
|
|
|
|
| 66 |
mutate(method = alter_method_name(method)) %>%
|
| 67 |
left_join(human_slides)
|
| 68 |
method_color_table = fread('method_colors.csv');method_colors = method_color_table$color;names(method_colors) = method_color_table$method
|
| 69 |
+
rank_threshold = fread('rank_threshold.csv')
|
| 70 |
|
| 71 |
na.omit(time)
|
| 72 |
|
rank_threshold.csv
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Method,Language,Rank order,Rank Variable Name,SVG Threshold Name,Threshold Value
|
| 2 |
+
SpaGene,R,Ascending,zval,adjp,adjp<0.05
|
| 3 |
+
HRG,R,NA,gene_name,NA,NA
|
| 4 |
+
SINFONIA,Python,Descending,moransi_scores,svg_boolean,svg_boolean == TRUE
|
| 5 |
+
SpaGFT,Python,Ascending,svg_rank,"pvalue, cutoff_gft_score","pvalue<0.05, cutoff_gft_score == True"
|
| 6 |
+
singlecellHaystack,R,Ascending,log.p.vals,p.value.threshold in Function,p.value.threshold=1e-10
|
| 7 |
+
Spanve,Python,Ascending,fdrs,fdrs,rejects==True & fdrs < 0.05
|
| 8 |
+
BSP,Python,Ascending,p_values,p_values,p_values < 0.05
|
| 9 |
+
SPARK-X,R,Ascending,adjustedPval,adjustedPval,adjustedPval <0.05
|
| 10 |
+
Moran's I,Python,Descending,abs_z_sim,pval_sim_fdr_bh,pval_sim_fdr_bh < 0.05
|
| 11 |
+
SpaGCN,Python,Ascending,pvals_adj,pvals_adj,pvals_adj < 0.05
|
| 12 |
+
HEARTSVG,R,Ascending,rank,p_adj,p_adj<0.05
|
| 13 |
+
RayleighSelection,R,Ascending,R0,q0,q0<0.05
|
| 14 |
+
sepal,Python,Descending,sepal_score,sepal_score,Top 10% sepal_score
|
| 15 |
+
SOMDE,Python,Descending,LLR,qval,qval < 0.05
|
| 16 |
+
scGCO,Python,Ascending,fdr,fdr,fdr < 0.01
|
| 17 |
+
BinSpect,R,Descending,score,adj.p.value,adj.p.value<0.05
|
| 18 |
+
SpatialDE2,Python,Descending,test_stat,padj,padj < 0.001
|
| 19 |
+
SpatialDE,Python,Descending,LLR,qval,qval < 0.05
|
| 20 |
+
SPARK,R,Ascending,adjusted_pvalue,adjusted_pvalue,adjusted_pvalue<0.05
|
| 21 |
+
nnSVG,R,Ascending,rank,padj,padj<0.05
|