Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bladder dorsal ventral #120

Merged
merged 10 commits into from
Feb 23, 2021
38 changes: 29 additions & 9 deletions src/scaffoldmaker/annotation/bladder_terms.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,39 @@

# convention: preferred name, preferred id, followed by any other ids and alternative names
bladder_terms = [
("urinary bladder", "UBERON:0001255", "FMA:15900"),
("neck of urinary bladder", "UBERON:0001258", "FMA:15912"),
("Dome of the Bladder", "ILX:0738433"),
("serosa of urinary bladder", "UBERON:0001260"),
("bladder lumen", "UBERON:0009958"),
("serosa of body of urinary bladder", "ILX:0739276"),
("dome of the bladder", "ILX:0738433"),
("dorsal part of bladder lumen", "None"),
("dorsal part of lumen of body of urinary bladder", "ILX:0739250"),
("dorsal part of lumen of neck of urinary bladder", "ILX:0739255"),
("dorsal part of lumen of urethra", "ILX:0739260"),
("dorsal part of the bladder", "None"),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rename to remove "the" --> "dorsal part of bladder" for consistency with other terms.
Also "ventral part of bladder" below.
(Exception: "dome of the bladder" is already in SciCrunch with "the", so can't change it).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also update where they are used?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done Richard.

("dorsal part of urethra", "ILX:0739258"),
("dorsal part of serosa of body of urinary bladder", "ILX:0739278"),
("dorsal part of serosa of neck of urinary bladder", "ILX:0739280"),
("dorsal part of serosa of urethra", "ILX:0739283"),
("dorsal part of serosa of urinary bladder", "ILX:0739248"),
("lumen of body of urinary bladder", "ILX:0739252"),
("serosa of neck of urinary bladder", "ILX:0739277"),
("lumen of neck of urinary bladder", "ILX:0739256"),
("urethra", "UBERON:0000057", "ILX:0733022"),
("lumen of urethra", "ILX:0736762"),
("lumen of urethra", "UBERON:0010390", "ILX:0736762"),
("neck of urinary bladder", "UBERON:0001258", "FMA:15912"),
("serosa of body of urinary bladder", "ILX:0739276"),
("serosa of neck of urinary bladder", "ILX:0739277"),
("serosa of urethra", "ILX:0739282"),
("ureter", "UBERON:0000056", "ILX:0728080")
("serosa of urinary bladder", "UBERON:0001260"),
("ureter", "UBERON:0000056", "ILX:0728080"),
("urethra", "UBERON:0000057", "ILX:0733022"),
("urinary bladder", "UBERON:0001255", "FMA:15900"),
("ventral part of bladder lumen", "None"),
("ventral part of lumen of body of urinary bladder", "ILX:0739251"),
("ventral part of lumen of neck of urinary bladder", "ILX:0739257"),
("ventral part of lumen of urethra", "ILX:0739261"),
("ventral part of serosa of body of urinary bladder", "ILX:0739279"),
("ventral part of serosa of neck of urinary bladder", "ILX:0739281"),
("ventral part of serosa of urethra", "ILX:0739306"),
("ventral part of serosa of urinary bladder", "ILX:0739249"),
("ventral part of the bladder", "None"),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"ventral part of bladder".

("ventral part of urethra", "ILX:0739259")
]

def get_bladder_term(name : str):
Expand Down
Loading