-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can't run the run_cicero!!! #98
Comments
No. you are wrong. I confirmed I've got the same package versions as yours and My R is 4.1.2.
I suggest you go through the original tutorial https://cole-trapnell-lab.github.io/cicero-release/docs_m3/#constructing-cis-regulatory-networks make sure it runs. I suspected the way you set the 'toy' data, |
Thank you so much for your reply! I have changed my code according your suggestion, but still get the same error! Code to download (54M) and unzip the file - can take a couple minutesdepending on internet connection:temp <- textConnection(readLines(gzcon(url("http://staff.washington.edu/hpliner/data/kidney_data.txt.gz")))) read in the datacicero_data <- read.table(temp) input_cds <- detect_genes(input_cds) plot_cells(input_cds) data("mouse.mm9.genome") use only a small part of the genome for speedsample_genome <- subset(mouse.mm9.genome, V1 == "chr2") Usually use the whole mouse.mm9.genomeUsually run with sample_num = 100conns <- run_cicero(cicero_cds, sample_genome, sample_num = 100) R is 4.3.2
|
So sorry to trouble again!
If you'd like, can you share the code you run?Thank you very much! |
Apologies for the long delay. Is this still an issue? |
While running code "run_cicero", I keep getting "The previous R session was abnormally terminated due to an unexpected crash"
I just run the test code!!
library(cicero)
library(Signac)
library(Seurat)
library(SeuratWrappers)
library(ggplot2)
library(patchwork)
library(monocle3)
data("cicero_data")
data("human.hg19.genome")
sample_genome <- subset(human.hg19.genome, V1 == "chr18")
sample_genome$V2[1] <- 100000
input_cds <- make_atac_cds(cicero_data, binarize = TRUE)
input_cds <- detect_genes(input_cds)
input_cds <- estimate_size_factors(input_cds)
input_cds <- preprocess_cds(input_cds, method = "PCA")
input_cds <- reduce_dimension(input_cds, max_components = 2, num_dim=6,
reduction_method = 'tSNE',
norm_method = "none",
preprocess_method = 'PCA')
cicero_cds <- make_cicero_cds(input_cds, reduced_coordinates = reducedDims(input_cds)$tSNE)
cons <- run_cicero(cicero_cds, sample_genome, sample_num = 2)
I think this is because of my package version, but I don't know the correct version about cicero and monocle3!
cicero_1.3.9
monocle3_1.3.4
Seurat_4.3.0
And I don't want to update my seurat4 to seurat5.
The text was updated successfully, but these errors were encountered: