-
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
warning messages in nearBaitAnalysis and cisAnalysis #14
Comments
Its failing at the parameter estimation step. When you created the 4Cker object did you get a warning message about QC? It seems to me like your data is quiet sparse and the near (2MB around the bait) |
Hi Ramya, |
You should still have gotten normalized bedgraph files so you can visualize those. If the adaptive windows did not work well due to the large repeats and you are trying to detect differences between your conditions, try using DESeq2 with fixed windows starting from the raw bedgraph files. |
Thank you for your advice.
2016-11-08 18:13 GMT+01:00 Ramya Raviram <notifications@github.com>:
… You should still have gotten normalized bedgraph files so you can
visualize those. If the adaptive windows did not work well due to the large
repeats and you are trying to detect differences between your conditions,
try using DESeq2 with fixed windows starting from the raw bedgraph files.
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#14 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AInEHhXho1JzMls1gNG3_YiBmrQrA_PSks5q8K3UgaJpZM4Km_kV>
.
|
Hello Ramya,
I am stuck with the nearBaitAnalysis and cisAnalysis. I attached 2 toy datasets.
I processed the data as follow:
GFP <- read.delim(file = "
/Documents/GFP.bedgraph", header = F, stringsAsFactors = F)/Documents/RNAi.bedgraph", header = F, stringsAsFactors = F)RNAi <- read.delim(file = "
my_test = createR4CkerObjectFromDFs(dfs = c("GFP","RNAi"),
bait_chr="X", bait_coord= 21630544,
bait_name = "my_bait", primary_enz = "CATG",
samples = c("GFP","RNAi"), conditions = c("GFP", "RNAi"),
replicates = c(1,1), species = "dm",
output_dir = "~/Documents/results/4C/bed/test")
nb_results_test = nearBaitAnalysis(my_test, k = 3)
The output is:
[1] "Building adaptive windows..."
[1] "Normalizing counts..."
[1] "Generating synthetic samples...."
[1] "Parameter estimation....."
[1] "Warning: only 1 iteration. Using starting parameters"
[1] "Parameter estimation....."
[1] "Warning: only 1 iteration. Using starting parameters"
[1] "Parameter estimation....."
[1] "Warning: only 1 iteration. Using starting parameters"
[1] "Parameter estimation....."
[1] "Warning: only 1 iteration. Using starting parameters"
[1] "BED file of highest interacting domains for near the bait on the cis chromosome are saved in ~/Documents/results/4C/bed/test/"
Warning messages:
1: In p0 * vscale[(neq + 2):(nc + np + 1)] :
longer object length is not a multiple of shorter object length
2: In p0 * vscale[(neq + 2):(nc + np + 1)] :
longer object length is not a multiple of shorter object length
3: In p0 * vscale[(neq + 2):(nc + np + 1)] :
longer object length is not a multiple of shorter object length
4: In p0 * vscale[(neq + 2):(nc + np + 1)] :
longer object length is not a multiple of shorter object length
I got similar output with the command lines
nb_results_test = nearBaitAnalysis(my_test, k = 5)
cis_results_test = cisAnalysis(my_test, k = 10)
Is there some parameter to set up in order to avoid "Warning: only 1 iteration. Using starting parameters" ?
The second warning " In p0 * vscale[(neq + 2):(nc + np + 1)] : ..." sounds more like an error. Do you have any idea from where this issue could come from and how to solve it ?
Many thanks in advance for your help,
GFP.txt
RNAi.txt
The text was updated successfully, but these errors were encountered: