Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 398 Bytes

README.md

File metadata and controls

8 lines (6 loc) · 398 Bytes

idr0161-yayon-thymus

The RareCyte images will have a MapAnnotation "com.glencoesoftware.stitcher.minmax" after import. They can be deleted like that:

omero hql -q --style csv --ids-only "select m from MapAnnotation m where m.ns = 'com.glencoesoftware.stitcher.minmax'" | cut -d "," -f 2 | cut -d : -f 2 >> ids.txt
for i in `cat ids.txt`;do omero delete --force MapAnnotationI:$i ; done