Skip to content

Commit

Permalink
DeBUG with max(ns)/4,100
Browse files Browse the repository at this point in the history
  • Loading branch information
jiabowang committed Mar 18, 2024
1 parent dcac8b1 commit 15da881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/GAPIT.EMMAxP3D.R
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@
#print(paste("The value of is.na(CVI) is", is.na(CVI), sep = ""))
# CVI may be > 1 element long
#if(!is.na(CVI)){
if(any(!is.NULL(CVI)))
if(any(!is.null(CVI)))
{
XCV=as.matrix(cbind(1,data.frame(CVI[,-1])))
#CV.Extragenetic specified
Expand All @@ -822,7 +822,7 @@
}#end of any(!is.na(CVI))
# CVI may be > 1 element long.
#if(is.na(CVI)) BLUE = NA
if(any(is.NULL(CVI))) BLUE = NA
if(any(is.null(CVI))) BLUE = NA
}#end of i ==0 &file==file.from &frag==1 & !is.null(K)
#-------------------------------------------------------------------------------------------------------------------->
#--------------------------------------------------------------------------------------------------------------------<
Expand Down

0 comments on commit 15da881

Please sign in to comment.