mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
Several bugs dicoverd during the doc writing
This commit is contained in:
@ -8,7 +8,7 @@ import (
|
||||
// corresponds to the last commit, and not the one when the file will be
|
||||
// commited
|
||||
|
||||
var _Commit = "2d52322"
|
||||
var _Commit = "03b5ce9"
|
||||
var _Version = "Release 4.4.0"
|
||||
|
||||
// Version returns the version of the obitools package.
|
||||
|
@ -223,7 +223,7 @@ func CLISequenceCountPredicate() obiseq.SequencePredicate {
|
||||
return p
|
||||
}
|
||||
|
||||
if _MaximumLength != int(2e9) {
|
||||
if _MaximumCount != int(2e9) {
|
||||
return obiseq.IsLessAbundantOrEqualTo(_MaximumCount)
|
||||
}
|
||||
|
||||
|
@ -137,9 +137,9 @@ func AssemblePESequences(seqA, seqB *obiseq.BioSequence,
|
||||
annot := cons.Annotations()
|
||||
|
||||
if fastAlign {
|
||||
annot["paring_fast_count"] = fastcount
|
||||
annot["paring_fast_score"] = math.Round(fastscore*1000) / 1000
|
||||
annot["paring_fast_overlap"] = over
|
||||
annot["pairing_fast_count"] = fastcount
|
||||
annot["pairing_fast_score"] = math.Round(fastscore*1000) / 1000
|
||||
annot["pairing_fast_overlap"] = over
|
||||
}
|
||||
|
||||
if aliLength >= minOverlap && identity >= minIdentity {
|
||||
|
@ -165,3 +165,7 @@ func CLIExtractTaxonomy() bool {
|
||||
func CLIAsNewick() bool {
|
||||
return __newick__
|
||||
}
|
||||
|
||||
func CLIAskForRankList() bool {
|
||||
return __rank_list__
|
||||
}
|
||||
|
Reference in New Issue
Block a user