Skip to content

Commit

Permalink
fixed issue with placing confidence intervals for multiple QTL
Browse files Browse the repository at this point in the history
  • Loading branch information
Thatguy027 committed Aug 21, 2015
1 parent 4e134e5 commit ba79984
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions R/process_mappings.R
Expand Up @@ -302,6 +302,8 @@ identify_CI <- function( processed_mapping_df,

peak_list[[i]]$trait <- as.character(peak_list[[i]]$trait)

peak_list[[i]] <- dplyr::distinct(peak_list[[i]], pID)

# FILTER TO LOOK AT ONE PHENOTYPE AT A TIME
# FILTER APPROPRIATE INTERVAL INDICIES AND CHROMOSOMES FOR THAT PHENOTYPE
trait_i <- unique(peak_list[[i]]$trait)
Expand Down Expand Up @@ -602,6 +604,8 @@ process_mappings <- function(mapping_df,

peak_list[[i]]$trait <- as.character(peak_list[[i]]$trait)

peak_list[[i]] <- dplyr::distinct(peak_list[[i]], pID)

# FILTER TO LOOK AT ONE PHENOTYPE AT A TIME
# FILTER APPROPRIATE INTERVAL INDICIES AND CHROMOSOMES FOR THAT PHENOTYPE
trait_i <- unique(peak_list[[i]]$trait)
Expand Down

0 comments on commit ba79984

Please sign in to comment.