Content deleted Content added
Julialturner (talk | contribs) Undid revision 726279046 by 70.95.134.121 (talk) |
Julialturner (talk | contribs) added mitocondrial to chromosome trim |
||
Line 2,265:
local out = ''
if string.find(string_to_trim, 'chromosome') then
out =
if out == nil then
out = string.match(string_to_trim, "X") or string.match(string_to_trim, "Y")
end ▼
end
if string.find(string_to_trim, 'mouse.chromosome') then▼
out = "M"
end
return out
end
|