Dear experts,
 
For the makeGenotype function I need a list as in the example. However,
since my list needs to be 184 long there must be an easy way to make it.
 
>list(1:2,3:4,5:6,7:8)
[[1]]
[1] 1 2
 
[[2]]
[1] 3 4
 
[[3]]
[1] 5 6
 
[[4]]
[1] 7 8

 I have tried 
lis<-1:184
dim(lis)=c(92,2,1)
as.list(lis)
 
and several other options. Any suggestions?
 
many thanks
 
Marco 

        [[alternative HTML version deleted]]

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to