mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-12-10 01:30:27 +00:00
obicsv bug with stat on value map fields
This commit is contained in:
@@ -21,7 +21,7 @@ func (s *BioSequence) AttributeKeys(skip_container, skip_definition bool) obiuti
|
||||
keys := obiutils.MakeSet[string]()
|
||||
|
||||
for k, v := range s.Annotations() {
|
||||
if !((skip_container && obiutils.IsAContainer(v)) ||
|
||||
if !((skip_container && (obiutils.IsAContainer(v) || IsStatsOnValues(v))) ||
|
||||
(skip_definition && k == "definition")) {
|
||||
keys.Add(k)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user