mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
refactoring of the file chunck writing
This commit is contained in:
@ -150,11 +150,11 @@ func (s BioSequenceSlice) Size() int {
|
||||
return size
|
||||
}
|
||||
|
||||
func (s BioSequenceSlice) AttributeKeys(skip_map bool) obiutils.Set[string] {
|
||||
func (s BioSequenceSlice) AttributeKeys(skip_map, skip_definition bool) obiutils.Set[string] {
|
||||
keys := obiutils.MakeSet[string]()
|
||||
|
||||
for _, k := range s {
|
||||
keys = keys.Union(k.AttributeKeys(skip_map))
|
||||
keys = keys.Union(k.AttributeKeys(skip_map, skip_definition))
|
||||
}
|
||||
|
||||
return keys
|
||||
|
Reference in New Issue
Block a user