R/cbind_scan1.R

Defines functions cbind.scan1

Documented in cbind.scan1

#' Join genome scan results for different phenotypes.
#'
#' Join multiple [scan1()] results for different phenotypes;
#' must have the same map.
#'
#' @md
#'
#' @param ... Genome scan objects as produced by [scan1()].
#' Must have the same map.
#'
#' @return A single genome scan object with the lod score columns
#' combined as multiple columns.
#'
#' @details If components `addcovar()`, `Xcovar`,
#' `intcovar`, `weights` do not match between objects, we
#' omit this information.
#'
#' If `hsq` present but has differing numbers of rows, we omit this information.
#'
#' @examples
#' library(qtl2geno)
#' grav2 <- read_cross2(system.file("extdata", "grav2.zip", package="qtl2geno"))
#' map <- insert_pseudomarkers(grav2$gmap, step=1)
#' probs <- calc_genoprob(grav2, map, error_prob=0.002)
#' phe1 <- grav2$pheno[,1,drop=FALSE]
#' phe2 <- grav2$pheno[,2,drop=FALSE]
#'
#' out1 <- scan1(probs, phe1) # phenotype 1
#' out2 <- scan1(probs, phe2) # phenotype 2
#' out <- cbind(out1, out2)
#'
#' @export
cbind.scan1 <-
    function(...)
{
    args <- list(...)
    if(length(args) == 1) return(result)

    # to cbind: main data, attributes SE, hsq
    # to c(): attribute sample_size

    # grab attributes
    args_attr <- lapply(args, attributes)

    result <- unclass(args[[1]])

    # cbind the data
    for(i in 2:length(args)) {
        if(!is_same(rownames(result), rownames(args[[i]])))
            stop("Input objects 1 and ", i, " have different rownames.")
        result <- cbind(result, unclass(args[[i]]))
    }

    # combine sample_size
    for(i in 2:length(args)) {
        for(obj in c("sample_size")) {
            if(is.null(args_attr[[1]][[obj]]) && is.null(args_attr[[i]][[obj]])) next
            if(is.null(args_attr[[1]][[obj]]) || is.null(args_attr[[i]][[obj]]))
                stop("attribute ", obj, " not present in all objects")

            args_attr[[1]][[obj]] <- c(args_attr[[1]][[obj]], args_attr[[i]][[obj]])
        }
    }

    # attributes to combine by cbind()
    for(i in 2:length(args)) {
        for(obj in c("hsq", "SE")) {
            if(is.null(args_attr[[1]][[obj]]) && is.null(args_attr[[i]][[obj]])) next
            if(is.null(args_attr[[1]][[obj]]) || is.null(args_attr[[i]][[obj]]))
                stop("attribute ", obj, " not present in all objects")

            if(!is_same(rownames(args_attr[[1]][[obj]]), rownames(args_attr[[i]][[obj]])))
                stop("attribute ", obj, " have differences in rownames")

            args_attr[[1]][[obj]] <- cbind(args_attr[[1]][[obj]], args_attr[[i]][[obj]])
        }
    }

    for(obj in c("sample_size", "hsq", "SE"))
        attr(result, obj) <- args_attr[[1]][[obj]]
    class(result) <- class(args[[1]])

    result
}
rqtl/qtl2scan documentation built on May 28, 2019, 2:36 a.m.