Displaying 20 results from an estimated 1000 matches similar to: "Re : QTL interval mapping for outbred population"
2004 Nov 09
0
Re: QTL interval mapping in outbred populations
On Mon, 8 Nov 2004 ssim at lic.co.nz wrote:
>
> Is there an add-on package in R for QTL interval mapping for outbred
> population, eg. Haley-Knott regression method ?
>
> Stella
I believe Karl Broman's R/QTL (http://biosun01.biostat.jhsph.edu/~kbroman/software/)
and Brian Yandell's bim (http://www.stat.wisc.edu/~yandell/qtl/software/),
Richard Mott's happyR
2009 Nov 06
1
Qtl - package - Question
Dear R-Helpers,
I am using qtl package to analyze qtl data from QTL cartographer.
I have the map file and cro file from QTL cartographer. I was trying to
import these two files in R using qtl package.
data=read.cross("qtlcart", ".", "crofile.txt", "mapfile.txt") ### I have
matched the file structure with the one on the website of qtl package - It
matches
2004 Nov 21
3
RE : Create sequence for dataset
Dear members,
I want to create a sequence of numbers for the multiple records of
individual animal in my dataset. The SAS code below will do the trick, but
I want to learn to do it in R. Can anyone help ?
data ht&ssn;
set ht&ssn;
by anml_key;
if first.anml_key then do;
seq_ht_rslt=0;
end;
seq_ht_rslt+1;
Thanks in advance.
Stella
2006 Apr 03
0
R/qtl
Dear all,
I am running qtl mapping. I have 75 RI lines with some residual
heterogeneous loci. The loci are code A, B or H(heterogeneous).
Questions:
1) R/qtl determine the data is F2 intercross.
2) Warning message about strange genotype pattern
> library(qtl)
> dat=read.cross("csv", file="rqtl_trt.csv")
--Read the following data:
75 individuals
2006 Sep 24
1
Add-on patch to support .pls .asx .ram .qtl listing formats
Hi,
If you have multiple players installed on your PC/Mac .m3u will always
open the last media player who are the default in charge of the extension
and mime m3u.
On your web site you want maybe to force a link to open real media player
or quicktime/itune. You need to create a .pls to force winamp loading the
streaming because windows media player won't open .pls etc.
If you add a .pls
2007 Apr 23
1
Dominance in qtl model
Hi,
I'm using R for a QTL analysis of SNP data. I was wondering if anyone
had any advice on fitting a dominance effect into the following
function;
> myfun4
function (x) {
x <- scan(con, nmax=169)
y <- unique(x[which(!is.na(x))])
if(length(y)>1) {
summary(lme(Ad ~ x, random= ~1|sire, na.action="na.omit"))
}
else {print("no.infomation")}
}
Con is the
2000 Mar 08
1
installing package in Windows
Could you help me in getting a package to compile from source in Windows?
I'm running Windows NT 4.0 on a pentium 450 with 128 Mb of Ram. I've got R
1.0.0.
I am developing a package for R which includes a bit of C code. I have things
working in Unix just fine, and now I want to port it to Windows NT.
I've been following the instructions in the R complements to Venables and
2007 Oct 04
0
Patch to support .pls .asx .ram .qtl listing formats on last SVN
Infomaniak Network SA / Guy Baconniere wrote:
> Hi Karl,
>
>> While I think most of this is fine, I think in the fserve part (where
>> the checks to see if there is a playlist file in webroot), they all
>> seem to follow the same pattern so that would tend to indicate a
>> function to reduce duplication.
>>
>> At the moment I'm wondering whether these
2007 Oct 04
2
Patch to support .pls .asx .ram .qtl listing formats on last SVN
Hi Karl,
> While I think most of this is fine, I think in the fserve part (where
> the checks to see if there is a playlist file in webroot), they all
> seem to follow the same pattern so that would tend to indicate a
> function to reduce duplication.
>
> At the moment I'm wondering whether these responses could be
> automatically generated from xslt files? like xspf is.
2013 Mar 26
1
Can you help with local source file instalation?
Hi R,
I tried to install one local source package---"qtl" into R, but failed with the following message. I am using Macbook OS 10.8.3 with Xcode 4.6.1.
ld: warning: directory not found for option '-L/usr/local/lib'
ld: library not found for -lgfortran
collect2: ld returned 1 exit status
make: *** [qtl.so] Error 1
ERROR: compilation failed for package ¡®qtl¡¯
* removing
2006 Jul 17
1
Getting rid of for loops
Hello R-users!
I have a style question. I know that for loops are somewhat frowned upon in
R, and I was trying to figure out a nice way to do something without using
loops, but figured that i could get it done quickly using them. I am now
looking to see what kind of tricks I can use to make this code a bit more
aesthetically appealing to other R users (and learn something about R along
the
2003 Jul 28
2
R compilation error on Solaris
Hello...
I tried to compile an R addon package, R/qtl on a Solaris machine and
I get this error. I know that R/qtl complies correctly on other
platforms (Windows, Mac, Linuxes, etc), so I am wondering what the
problem might be.
Any ideas?
Thanks,
Saunak
-----------------------------------
/export/home/sen/tmp <howrahbridge> <pts/5> R INSTALL
2013 Sep 06
2
Fwd:
---------- Forwarded message ----------
From: Waqas Shafqat <waqas1518@gmail.com>
Date: Fri, Sep 6, 2013 at 10:31 PM
Subject:
To: rosyara@msu.edu
sorry sir
i have istalled plantbreeding libraray..but when i give command
"require(plantbreeding)" then following message appear
> require(plantbreeding)
Loading required package: plantbreeding
Loading required package: qtl
Failed
2024 Jan 29
0
DescTools::Quantile
It looks like a homework assignment. It also looks like you didn't read the documentation carefully enough. The 'len.out' argument in seq is solely for specifying the length of a sequence. The 'quantile' function omputes the empirical quantile of raw data in the vector 'x' at cumulative probabilit(y)(ies) given in the weights' argument, with interpolation I'm
2008 Mar 01
2
How to set up multiple spawns of R?
Sorry: resending this; didn't have a title on it.
Trying to set up multiple spawns of R
-------------------------------------------
Hi. I'm new to the list but I have a small problem with R. I'm trying to
set up multiple spawns of R active at the same time on an AMD with a dual
core in Vista so that I can cut down my permutation processing time.
I've installed R in multiple
2004 Dec 06
2
Re : LOOPS
Dear lists,
I want to construct a loop in R, but don't know how to do it. I can do it
in SAS, but I prefer in R (which I am hoping I will off SAS for good
soon). Could anyone help me to convert the SAS codes to equivalent R codes.
Basically, the following codes were written to establish the sire gametes
or phases for daughter design for one markers two alleles.
Here are the SAS code:
do
2010 Apr 29
1
R CMD check Error after R CMD build for R-2.11.0
Dear UseR,
I get an error when I run "R CMD check" on my .tar.gz file package,
and I don't understand why since I don't obtain any error with "R CMD
check" on the package directory. Do you have any idea ?
$ sudo ./R-2.11.0/bin/R CMD check eqtl_1.1.tar.gz
and
$ sudo ./R-2.11.0/bin/R CMD --check-subdirs=no eqtl_1.1.tar.gz
return an Error
* checking for working
2011 Oct 06
1
counts in quantiles in and from a matrix
Hello,
I'm trying to get the count of values in each row that are above and below
quantile thresholds. Thanks!
Example:
> x = matrix(1:30,5,6)
> x
[,1] [,2] [,3] [,4] [,5] [,6]
[1,] 1 6 11 16 21 26
[2,] 2 7 12 17 22 27
[3,] 3 8 13 18 23 28
[4,] 4 9 14 19 24 29
[5,] 5 10 15 20 25 30
> qtl = t(apply(x, 1,
2007 Aug 15
1
installation of packages
Dear All,
Have just installed v2.5.1 on Windows XP. Works fine but I had quite a few
pakages loaded for 2.5.0 (from contributed) and was wondering how I can
get 2.5.1 to recognise them without having to reinstall them all.
Is this possible or do I have to reinstall all the packages again?
I required 2.5.1 for lme4 and matrix.
Many thanks in advance.
2002 Jan 15
1
Error message in R: stack imbalance
Hello...
I just installed R version 1.4.0 on my laptop running Redhat Linux
7.1. I downloaded the RPM from CRAN and when I try to use a function
I have used on other Redhat systems, I get the following error
message.
--------
> library(qtl)
> gastritis <- read.cross(format="csv",dir="/home/sen/qtl/data/gastritis",
+