Sha256: f0ddb6e1fabcc4324b487cca197142fe8ca195fc3511d0fbd67d795172aed913

Contents?: true

Size: 794 Bytes

Versions: 255

Compression:

Stored size: 794 Bytes

Contents

package protein

const testVersion = 1

func FromCodon(codon string) string {
	switch codon {
	case
		"AUG":
		return "Methionine"
	case
		"UUU",
		"UUC":
		return "Phenylalanine"
	case
		"UUA",
		"UUG":
		return "Leucine"
	case
		"UCU",
		"UCC",
		"UCA",
		"UCG":
		return "Serine"
	case
		"UAU",
		"UAC":
		return "Tyrosine"
	case
		"UGU",
		"UGC":
		return "Cysteine"
	case
		"UGG":
		return "Tryptophan"
	case
		"UAA",
		"UAG",
		"UGA":
		return "STOP"
	}
	return "STOP"
}

func FromRNA(s string) []string {
	var res = ""
	var proteins []string
	for index, codon := range s {
		res += string(codon)
		if index > 0 && (index+1)%3 == 0 {
			tempCodon := FromCodon(res)
			if tempCodon == "STOP" {
				break
			}
			proteins = append(proteins, tempCodon)
			res = ""
		}
	}
	return proteins
}

Version data entries

255 entries across 255 versions & 1 rubygems

Version Path
trackler-2.1.0.39 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.38 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.37 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.36 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.34 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.33 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.32 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.31 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.30 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.29 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.28 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.27 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.26 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.25 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.24 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.23 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.22 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.21 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.20 tracks/go/exercises/protein-translation/example.go
trackler-2.1.0.19 tracks/go/exercises/protein-translation/example.go