Skip to content

Commit a1f17d6

Browse files
Add commented-out function templates for location and _norfs in utils.jl
1 parent b023cff commit a1f17d6

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

src/utils.jl

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,21 @@ function _varsymbol(var::Any)
7575
end
7676
end
7777
return nothing
78-
end
78+
end
79+
80+
# export location
81+
# function location(orf::ORFI{N,F})::UnitRange{Int64} where {N,F}
82+
# return orf.first:orf.last
83+
# end
84+
85+
# export _norfs
86+
# function _norfs(seq::NucleicSeqOrView{DNAAlphabet{N}}) where {N}
87+
# cpseq = copy(seq)
88+
# orfs = findorfs(cpseq; finder=NaiveCollector)
89+
90+
# for l in location.(orfs)
91+
# deleteat!(cpseq, l)
92+
# end
93+
94+
# return cpseq
95+
# end

0 commit comments

Comments
 (0)