-
Notifications
You must be signed in to change notification settings - Fork 0
Description
@cmungall is there a way to allow spaces in column 16?
We have lots of germplasm annotations that receive the relationship: "has_phenotype_score()" And the string that get's pulled from the Samara scrape file often has spaces in it. For example:
"Culm_diameter_(mm)_of_basal_internode_at_repro.=6"
Currently I am simply substituting spaces, and other illegal characters for "_". It works, but it looks really bad when displayed on the browser. I was wondering if there was a way to allow spaces if the string containing them falls inside the "( )" of the relationship. Or if there is something I can replace the spaces with that would be converted to spaces when viewing them in the browser (Think "%20" in URLs). In the above example the column16 from the GAF would look like:
has_phenotype_score(Culm%20diameter%20(mm)%20of%20basal%20internode%20at%20repro.=6)
That way the browser would display this as:
has phenotype score Culm diameter (mm) of basal internode at repro.=6
Let me know if this is not clear.