Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
exaexa committed Dec 15, 2023
1 parent 618f8f1 commit 8ed6b07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grr_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ $(TYPEDSIGNATURES)
Convert the given gene association expression to DNF.
"""
function flatten_gene_association(ga::Expr)::GeneAssociationDNF
function flatten_gene_association(ga::Expr)::A.GeneAssociationDNF

function fold_and(dnfs::Vector{Vector{Vector{String}}})::Vector{Vector{String}}
if isempty(dnfs)
Expand Down Expand Up @@ -178,7 +178,7 @@ $(TYPEDSIGNATURES)
Formats a DNF gene association as a `String`.
"""
function format_gene_association_dnf(
grr::GeneAssociationDNF;
grr::A.GeneAssociationDNF;
and = " && ",
or = " || ",
)::String
Expand Down

0 comments on commit 8ed6b07

Please sign in to comment.