package githubrepo
import "fmt"
func main() {
var me = Bioinformatician{
name: "Samuel Klein",
role: "PhD student",
institution: "LMU Munich",
humanLanguages: []string{"german", "english"},
programmingLanguages: []string{"java", "python", "javascript", "go", "bash"},
}
me.sayHi()
}
type Bioinformatician struct {
name string
role string
institution string
humanLanguages []string
programmingLanguages []string
}
func (b Bioinformatician) sayHi() string {
return fmt.Sprintf("Thanks for dropping by, hope you find some of my work interesting!" +
"\n\ngreetings\n%s", b.name)
}
KleinSamuel
Follow
👾
brrbrbr
PhD student in the field of bioinformatics at the LMU Munich, Germany.
-
LFE Bioinformatik
- Munich, Bavaria, Germany
Highlights
- Pro
Pinned Loading
-
htsjdk
htsjdk PublicForked from samtools/htsjdk
A Java API for high-throughput sequencing data (HTS) formats.
Java
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.