-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move conditionals to Conditionals.jl
- Loading branch information
Showing
5 changed files
with
104 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
export ishom, ishet, isbiallelic | ||
|
||
|
||
""" | ||
isbiallelic(data::GenoArray) | ||
Returns `true` if the `GenoArray` is biallelic, `false` if not. | ||
""" | ||
function isbiallelic(data::T) where T<:GenoArray | ||
length(unique(Base.Iterators.flatten(skipmissing(data)))) == 2 | ||
end | ||
|
||
|
||
""" | ||
isbiallelic(data::PopData) | ||
Returns `true` all the loci in the `PopData` are biallelic, `false` if not. | ||
""" | ||
function isbiallelic(data::PopData) | ||
mtx = reshape(data.loci.genotype, length(samples(data)), :) | ||
all(map(isbiallelic, eachcol(mtx))) | ||
end | ||
|
||
|
||
#TODO how to treat haploids? | ||
""" | ||
``` | ||
ishom(locus::T) where T <: GenoArray | ||
ishom(locus::Genotype) | ||
ishom(locus::Missing) | ||
``` | ||
A series of methods to test if a locus or loci are homozygous and return `true` if | ||
it is, `false` if it isn't, and `missing` if it's `missing`. The vector version | ||
simply maps the function over the elements. | ||
""" | ||
@inline function ishom(locus::Genotype) | ||
# if the first equals all others, return true | ||
return all(@inbounds first(locus) .== locus) | ||
end | ||
|
||
ishom(locus::Missing) = missing | ||
|
||
@inline function ishom(locus::T) where T<:GenoArray | ||
return @inbounds map(ishom, locus) | ||
end | ||
|
||
@inline function ishom(locus::T) where T<:Base.SkipMissing | ||
return @inbounds map(ishom, locus) | ||
end | ||
|
||
|
||
""" | ||
ishom(locus::Genotype, allele::Signed) | ||
ishom(loci::GenoArray, allele::Signed) | ||
Returns `true` if the `locus`/`loci` is/are homozygous for the specified `allele`. | ||
""" | ||
function ishom(geno::T, allele::U) where T<:Genotype where U<:Integer | ||
∈(allele, geno) & ishom(geno) ? true : false | ||
end | ||
|
||
ishom(geno::T, allele::U) where T<:GenoArray where U<:Integer = map(i -> ishom(i, allele), geno) | ||
|
||
ishom(geno::Missing, allele::U) where U<:Integer = missing | ||
|
||
""" | ||
``` | ||
ishet(locus::T) where T <: GenoArray | ||
ishet(locus::Genotype) | ||
ishet(locus::Missing) | ||
``` | ||
A series of methods to test if a locus or loci are heterozygous and return `true` if | ||
it is, `false` if it isn't. The vector version simply broadcasts the function over the | ||
elements. Under the hood, this function is simply `!ishom`. | ||
""" | ||
@inline function ishet(locus::Genotype) | ||
return !ishom(locus) | ||
end | ||
|
||
ishet(locus::Missing) = missing | ||
|
||
|
||
@inline function ishet(locus::T) where T<:GenoArray | ||
return @inbounds map(ishet, locus) | ||
end | ||
|
||
|
||
@inline function ishet(locus::T) where T<:Base.SkipMissing | ||
return @inbounds map(ishet, locus) | ||
end | ||
|
||
|
||
""" | ||
ishet(locus::Genotype, allele::Signed) | ||
ishet(loci::GenoArray, allele::Signed) | ||
Returns `true` if the `locus`/`loci` is/are heterozygous for the specified `allele`. | ||
""" | ||
function ishet(geno::T, allele::U) where T<:Genotype where U<:Integer | ||
∈(allele, geno) & !ishom(geno) ? true : false | ||
end | ||
|
||
ishet(geno::T, allele::U) where T<:GenoArray where U<:Integer = map(i -> ishet(i, allele), geno) | ||
|
||
ishet(geno::Missing, allele::U) where U<:Integer = missing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters