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
Hi,
Thanks for the wonderful tool. However, I have been facing some issues. When I run the single sample pipeline, it works fine (some samples throw an error which I had raised in an already open issue). When I combine multiple samples, I get the following error:
Error in vegaMC_R(mtx = mtx, output_file_name = paste("./output/", sample, : NA/NaN/Inf in foreign function call (arg 1)
Traceback:
Hi,
Thanks for the wonderful tool. However, I have been facing some issues. When I run the single sample pipeline, it works fine (some samples throw an error which I had raised in an already open issue). When I combine multiple samples, I get the following error:
Error in vegaMC_R(mtx = mtx, output_file_name = paste("./output/", sample, : NA/NaN/Inf in foreign function call (arg 1)
Traceback:
. pipelineCNA(listCountMtx[[x]], norm_cell = listNormCells[[x]],
. sample = x, SUBCLONES = FALSE, ClonalCN = TRUE, par_cores = par_cores,
. organism = organism)
. })
. sample = x, SUBCLONES = FALSE, ClonalCN = TRUE, par_cores = par_cores,
. organism = organism)
. sample, par_cores = par_cores, ground_truth = NULL, norm_cell_names = norm_cell,
. SEGMENTATION_CLASS = TRUE, SMOOTH = TRUE, beta_vega = beta_vega)
. "vega_output"), beta = beta_vega)
Could you please help me fix this?
code used:
List of matrices names
matrix_names <- c('P5_N','P5_SCC_BCC')
Create an empty list
listCountMtx <- list()
Populate the list with matrices
for (name in matrix_names) {
listCountMtx[[name]] <- get(name)
}
List of normal cell
N_P5SCC<-P5_SCC_BCC[,c('AAACGGGCATTGCGGC-2',
'AAAGCAAGTCTGATCA-2',
'AAAGTAGCAGGATTGG-2',
'AAAGTAGCATTTCAGG-2',
'AAATGCCAGACTCGGA-2',
'AACACGTGTGTAAGTA-2',
'AACTCAGAGTGGTAAT-2',
'AACTCTTAGGCAATTA-2',
'AAGGAGCGTAATAGCA-2',
'AATCGGTCATACAGCT-2',
'ACACCCTAGGCTAGAC-2',
'ACACCCTCAGGAACGT-2',
'ACACCGGGTCCAGTAT-2',
'ACAGCTAGTTGATTGC-2',
'ACATCAGGTCTAGTGT-2',
'ACGATACCAAATCCGT-2',
'ACGATACGTAAACCTC-2',
'ACGCAGCAGTAGATGT-2',
'ACGCAGCGTCAGAGGT-2',
'ACGGAGAAGTGTCCCG-2',
'ACGGGCTGTCCGTTAA-2',
'ACTATCTCATCCAACA-2',
'ACTGAACGTGCTAGCC-2',
'ACTGAGTGTGATGCCC-2',
'ACTGTCCAGGATGTAT-2')]
#matrix_names <- c('P1_N','P1_SCC','P2_N','P2_SCC1','P2_SCC2','P3_IEC','P3_N','P4_N','P4_SCC','P5_N','P5_SCC_BCC')
matrix_names <- c('P5_N','N_P5SCC')
Create an empty list
listNormCells <- list()
Populate the list with matrices
for (name in matrix_names) {
listNormCells[[name]] <- get(name)
}
res5<-multiSampleComparisonClonalCN(listCountMtx, listNormCells, analysisName="P5_combined")
Fixing this would be really helpful for my project.
Thanks!
Prakrithi
The text was updated successfully, but these errors were encountered: