Displaying 4 results from an estimated 4 matches for "nmarker".
Did you mean:
marker
2009 May 19
1
[PATCH node-image] Fixing the autotest script.
...{workdir}"
expect -c '
set timeout 120
-log_file -noappend stateless-pxe-nohd.log
+
+log_file -noappend stateless-pxe.log
spawn sudo virsh console '"${nodename}"'
@@ -491,20 +490,18 @@ expect {
-exact "Starting ovirt-early:" { send_log "\n\nMarker 2\n\n"; exp_continue }
-exact "Starting ovirt:" { send_log "\n\nMarker 3\n\n"; exp_continue }
-exact "Starting ovirt-post:" { send_log "\n\nMarker 4\n\n"; exp_continue }
- -exact "login:" { send_log "\n\nMarker 5\n...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...ot;standalone firstboot=no" "${workdir}"
+
+ expect -c '
+set timeout '${timeout_period}'
+
+log_file -noappend stateless-pxe.log
+
+spawn sudo virsh console '"${nodename}"'
+
+expect {
+ -exact "Linux version" { send_log "\n\nMarker 1\n\n"; exp_continue }
+ -exact "Starting ovirt-early:" { send_log "\n\nMarker 2\n\n"; exp_continue }
+ -exact "Starting ovirt:" { send_log "\n\nMarker 3\n\n"; exp_continue }
+ -exact "Starting ovirt-post:" { send_log "\n\n...
2009 Oct 19
1
How to import the large data into R
...e to deal with microarray data, it can run when i deal with
little data. However, the amount number of SNP data are 45181, amount
numbers of animal are 3081,it can not be allocated 1000Mb memory when
i importing them to R
Procedure sentence show:
m<-matrix(scan("D:/SNPdata.txt"),ncol=nmarkers,byrow=TRUE)
Error show:
Error: cannot allocate vector of size 1000.0 Mb
Is there any way to import these data and calculations, i am very
anxious. Thank you very much.
Best regards.
Chen
2009 Nov 06
1
Qtl - package - Question
...ength as the vector [0]
I checked the code for read.cross function in the package
read.map.qtlcart("mapfile.txt") works fine...
The problem was in the following function:
read.cro.qtlcart("crofile.txt")
I tried to debug and find the problem:
debug: traits <- t(f[-(1:(2 + nmarkers)), ])
debug: traits = as.data.frame(traits)
debug: if (nrow(traits) == 1) traits <- as.data.frame(t(traits))
******************data frame with 0 columns and 102 rows**************** ---
This is the problem portion ---It should read my 9 trait values for all the
102 individuals.
****************...