Closed zzzsssyyy1995 closed 1 year ago
hi @zzzsssyyy1995, that's by design.
> head(colnames(means), 20)
[1] "id_cp_interaction" "interacting_pair"
[3] "partner_a" "partner_b"
[5] "gene_a" "gene_b"
[7] "secreted" "receptor_a"
[9] "receptor_b" "annotation_strategy"
[11] "is_integrin" "PapRCC_MNPb(mono)|PapRCC_MNPb(mono)"
[13] "PapRCC_MNPb(mono)|PapRCC_NK cell" "PapRCC_MNPb(mono)|RCC1_CD4T cell"
[15] "PapRCC_MNPb(mono)|RCC1_CD8T cell" "PapRCC_MNPb(mono)|RCC1_MNPa(mono)"
[17] "PapRCC_MNPb(mono)|RCC1_MNPb(mono)" "PapRCC_MNPb(mono)|RCC1_MNPc(DC)"
[19] "PapRCC_MNPb(mono)|RCC1_MNPd(Mac)" "PapRCC_MNPb(mono)|RCC1_Mast cell"
it should work if you use means2
and pvals2
:
> head(colnames(means2), 20)
[1] "id_cp_interaction" "interacting_pair" "partner_a"
[4] "partner_b" "gene_a" "gene_b"
[7] "secreted" "receptor_a" "receptor_b"
[10] "annotation_strategy" "is_integrin" "B cell|B cell"
[13] "B cell|CD4T cell" "B cell|CD8T cell" "B cell|MNPa(mono)"
[16] "B cell|MNPb(mono)" "B cell|MNPc(DC)" "B cell|MNPd(Mac)"
[19] "B cell|Mast cell" "B cell|NK cell"
@zktuong Thank you, that solved my confusion.
When I comment out the optional
split.by
parameter, it throws an error