You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, there are also additional parameters for us to use.
132
+
This function is straightforward to use,
133
+
especially in the case where the input mRNA has no ambiguous codons
134
+
and is divisible by 3.
135
+
However, there are also additional parameters available for handling other types of strings.
132
136
133
137
For instance, the function defaults to using the standard genetic code.
134
138
However, if a user wishes to use another codon chart
135
139
(for example, yeast or invertebrate),
136
140
there are others available on [BioSequences.jl](https://github.com/BioJulia/BioSequences.jl/blob/b626dbcaad76217b248449e6aa2cc1650e95660c/src/geneticcode.jl#L130) to choose from.
137
141
138
-
By default `allow_ambiguous_codons` is `true`.
139
-
However, if a user is giving the function a mRNA string with ambiguous codons that may not be found in the standard genetic code,
140
-
these codons will be translated to the most narrow amino acid which covers all
142
+
By default,`allow_ambiguous_codons` is `true`.
143
+
If a user gives the function a mRNA string with ambiguous codons that may not be found in the standard genetic code,
144
+
these codons will be translated to the narrowest amino acid which covers all
141
145
non-ambiguous codons encompassed by the ambiguous codon.
142
-
By default, ambiguous codons will cause an error.
146
+
If this option is turned off,
147
+
ambiguous codons will cause an error.
143
148
144
149
Additionally, `alternative_start` is `false` by default.
145
-
If set to true, the starting codon will be Methionine regardless of the starting codon.
150
+
If set to true, the starting amino acid will be Methionine regardless of what the first codon is.
146
151
147
152
Similar to our function, the BioSequences function also throws an error if the input mRNA string is not divisible by 3.
0 commit comments