mirror of
https://github.com/metabarcoding/obitools4.git
synced 2026-04-30 12:00:39 +00:00
5 lines
113 B
Lua
5 lines
113 B
Lua
|
|
-- Simple pass-through script: returns each sequence unchanged
|
||
|
|
function worker(sequence)
|
||
|
|
return sequence
|
||
|
|
end
|