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.2.1.56 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.55 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.54 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.53 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.52 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.51 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.50 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.49 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.48 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.47 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.46 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.45 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.44 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.43 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.42 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.41 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.40 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.39 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.38 tracks/go/exercises/protein-translation/example.go
trackler-2.2.1.37 tracks/go/exercises/protein-translation/example.go