Amit,
I know of a university professor and a university lecturer who use Go for computational biology. They solve some interesting computer science problems.
You say your code is efficient:
https://pkg.go.dev/github.com/fluhus/biostuffI looked at your code and picked something simple:
package align
func (SubstitutionMatrix) GoString.I made some simple revisions to improve efficiency and ran a Go benchmark.
BenchmarkAL-4 6807 160245 ns/op 35941 B/op 1344 allocs/op
BenchmarkPG-4 7929 137172 ns/op 17354 B/op 1101 allocs/opYour code (AL) appears to be less efficient than my revised version (PG).
peter