()
| 112 | } |
| 113 | |
| 114 | func ExampleReadCodonJSON() { |
| 115 | codontable := codon.ReadCodonJSON("../../data/bsub_codon_test.json") |
| 116 | |
| 117 | fmt.Println(codontable.GetWeightedAminoAcids()[0].Codons[0].Weight) |
| 118 | //output: 28327 |
| 119 | } |
| 120 | |
| 121 | func ExampleParseCodonJSON() { |
| 122 | file, _ := os.ReadFile("../../data/bsub_codon_test.json") |
nothing calls this directly
no test coverage detected