Hey,
of cource I dont want to have a file which is no more supported by any ome software. But there will always be tags which are not considered, no matter how complex the schema is.
In our case e.g.
- DPSS as an laser type
- some more tags to describe the experiments like "date"
- additional instruments, als "tube lens", "excitation lens"...
just to name a few.
I got an reply, telling me that it is working, I hope that it is OK if I post it here
---------the reply------------
Hi Steffan,
Absolutely, you have the right idea. If you have created your own schema, and are hosting it on your web server, you can indeed reference it in that fashion. Then you just use the "OUR_LAB" namespace with elements from your schema.
Of course, anything in your XML blocks not from the OME schema will likely be ignored by Bio-Formats and other OME-compatible software.
Let us know on the OME users mailing list (
http://lists.openmicroscopy.org.uk/mail ... ome-users/) if you have any problems with it.
-------------------------------------
------------my answer-------------
What I described in my post (below) is not working. Let me give you an example, probably you will find my mistake.
In the ome schema of 2009 (see
http://www.openmicroscopy.org/Schemas/OME/2009-09) you will find a tag called "MiddleName" in "Experimenter", which is not there in the schema of 2008.
If you say
- Code: Select all
<OME xmlns="http://www.openmicroscopy.org/Schemas/OME/2008-09" xmlns:ome2009="http://www.openmicroscopy.org/Schemas/OME/2009-09" ....>
...
<Experimenter ID="Experimenter:sillig">
<FirstName>Stefan</FirstName>
<ome2009:MiddleName>Bernhard</ome2009:MiddleName>
<LastName>Schnell</LastName>
<Email>xyz@mpimf.de</Email>
<Institution>MaxPlanckInstituteMF</Institution>
<GroupRef ID="Group:Lightmicroscopy1"/>
</Experimenter>
...
it will not be validated.
-------------------------
Why is it not possible to embed tag like in the example above? It would be absolutely flexible, fit any needs and ome software could read the ome-conform tags.
Regards Steffen