mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
update the compress option name
This commit is contained in:
@ -1,15 +1,15 @@
|
||||
package obidefault
|
||||
|
||||
var __compressed__ = false
|
||||
var __compress__ = false
|
||||
|
||||
func CompressOutput() bool {
|
||||
return __compressed__
|
||||
return __compress__
|
||||
}
|
||||
|
||||
func SetCompressOutput(b bool) {
|
||||
__compressed__ = b
|
||||
__compress__ = b
|
||||
}
|
||||
|
||||
func CompressedPtr() *bool {
|
||||
return &__compressed__
|
||||
func CompressOutputPtr() *bool {
|
||||
return &__compress__
|
||||
}
|
||||
|
Reference in New Issue
Block a user