-
Notifications
You must be signed in to change notification settings - Fork 4
Description
Hi,
I was trying the tutorial to check if I can properly run the package. However, I am getting an error message as below:
Error in RTIGER(expDesign = expDesign, outputdir = output_dir, seqlengths = chr_len, :
object 'post_post.processing' not found
I tried changing the 'rigidity' parameter and it did not help.
My script is given below:
library("RTIGER")
library("Gviz")
library("rtracklayer")
#setupJulia()
sourceJulia()
Get paths to example allele count files originating from a
cross between Col-0 and Ler accession of the A.thaliana
file_paths = list.files(system.file("extdata", package = "RTIGER"), full.names = TRUE)
Get sample names
sampleIDs <- basename(file_paths)
Create the expDesign object
expDesign = data.frame(files=file_paths, name=sampleIDs)
print(expDesign)
Get chromosome lengths for the example data included in the package
chr_len <- RTIGER::ATseqlengths
names(chr_len) <- c('Chr1' , 'Chr2', 'Chr3', 'Chr4', 'Chr5')
print(chr_len)
output_dir <- "C:/my_test_data"
myres = RTIGER(expDesign = expDesign,
outputdir = output_dir,
seqlengths = chr_len,
rigidity = 20,
save.results = TRUE)