-
Notifications
You must be signed in to change notification settings - Fork 0
/
openimadis_uploader.java
282 lines (217 loc) · 10.1 KB
/
openimadis_uploader.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package plugins.perrine.openimadisutilities;
import com.strandgenomics.imaging.iclient.ImageSpace;
import com.strandgenomics.imaging.iclient.ImageSpaceObject;
import com.strandgenomics.imaging.iclient.PixelMetaData;
import com.strandgenomics.imaging.iclient.RecordBuilder;
import com.strandgenomics.imaging.icore.Dimension;
import com.strandgenomics.imaging.icore.ImageType;
import com.strandgenomics.imaging.icore.Site;
import com.strandgenomics.imaging.icore.SourceFormat;
import com.strandgenomics.imaging.icore.image.PixelArray;
import com.strandgenomics.imaging.icore.image.PixelDepth;
import com.strandgenomics.imaging.iclient.Project;
import com.strandgenomics.imaging.icore.Channel;
import icy.sequence.Sequence;
import icy.type.DataType;
import icy.system.thread.ThreadUtil;
import java.awt.Rectangle;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.ListIterator;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import loci.formats.ome.OMEXMLMetadataImpl;
import plugins.adufour.blocks.lang.Block;
import plugins.adufour.blocks.util.VarList;
import plugins.adufour.ezplug.EzPlug;
import plugins.adufour.ezplug.EzVar;
import plugins.adufour.ezplug.EzVarEnum;
import plugins.adufour.ezplug.EzVarInteger;
import plugins.adufour.ezplug.EzVarSequence;
import plugins.adufour.ezplug.EzVarText;
import plugins.adufour.vars.lang.VarSequence;
/**
* TODO put an option and query(several GUID selection) OR GUID. For now one guid to be compaticble with cluster processing.
* @author Perrine
*
*/
public class openimadis_uploader extends EzPlug implements Block{
EzVarInteger mamaguid=new EzVarInteger( "GUID from which the seqeunce was created");
VarSequence inputsequence=new VarSequence("sequence to upload", null);
EzVarSequence inputvarsequence=new EzVarSequence("input sequence");
EzVarText choiceproject ;
String[] listofprojectnames;
private EzVar<Integer> prj;
@Override
public void clean() {
// TODO Auto-generated method stub
}
@Override
protected void execute() {
// TODO Auto-generated method stub
if (isHeadLess()){
uploadSequence(mamaguid.getValue(),inputsequence.getValue());
}
else {
uploadSequence(choiceproject.getValue(),inputvarsequence.getValue());
}
}
private void uploadSequence(final Integer mamaguid, Sequence sequencetoupload) {
// TODO Auto-generated method stub
ImageSpace ispace = ImageSpaceObject.getConnectionManager();
com.strandgenomics.imaging.iclient.Record mamarecord = ispace.findRecordForGUID(mamaguid);
Project prj = mamarecord.getParentProject();
List<Channel> channels = new ArrayList<Channel>();
for(int i=0;i<sequencetoupload.getSizeC();i++)
{
String name = sequencetoupload.getChannelName(i);
Channel channel = new Channel(name);
channels.add(channel);
}
List<Site> sites = new ArrayList<Site>();
sites.add(new Site(0, "Site 0"));
RecordBuilder rb = prj.createRecordBuilder(sequencetoupload.getName(), sequencetoupload.getSizeT(), sequencetoupload.getSizeZ(), channels, sites , sequencetoupload.getWidth(), sequencetoupload.getHeight(), getPixelDepth(sequencetoupload.getDataType_()), 1.0, 1.0, 1.0, ImageType.GRAYSCALE, new SourceFormat("IMG"), "", "/tmp", System.currentTimeMillis(), System.currentTimeMillis(), System.currentTimeMillis());
double interval = sequencetoupload.getTimeInterval();
double elapsedtime=interval;
if (sequencetoupload.getSizeT()>1)
elapsedtime=interval /(sequencetoupload.getSizeT()-1);
OMEXMLMetadataImpl omeMetadata = sequencetoupload.getMetadata();
Double exposureTime=1.0;
try{
exposureTime = (Double) omeMetadata.getPlaneExposureTime(0, 0).value();
}
catch (Exception e) {
exposureTime=1.0;
}
for(int time = 0; time<sequencetoupload.getSizeT();time++)
{
for(int slice = 0;slice<sequencetoupload.getSizeZ();slice++)
{
for(int channel = 0;channel<sequencetoupload.getSizeC();channel++)
{
PixelArray rawData = null;
if(getPixelDepth(sequencetoupload.getDataType_()) == PixelDepth.BYTE)
rawData = new PixelArray.Byte(((byte[])sequencetoupload.getDataCopyXY(time, slice, channel)), sequencetoupload.getWidth(), sequencetoupload.getHeight());
else if(getPixelDepth(sequencetoupload.getDataType_()) == PixelDepth.SHORT)
rawData = new PixelArray.Short(((short[])sequencetoupload.getDataCopyXY(time, slice, channel)), sequencetoupload.getWidth(), sequencetoupload.getHeight());
else if(getPixelDepth(sequencetoupload.getDataType_()) == PixelDepth.INT)
rawData = new PixelArray.Integer(((int[])sequencetoupload.getDataCopyXY(time, slice, channel)), sequencetoupload.getWidth(), sequencetoupload.getHeight());
else
{
System.out.println("unknown type");
return;
}
PixelMetaData pixelData = new PixelMetaData(new Dimension(time, slice, channel, 0), sequencetoupload.getPixelSizeX(),sequencetoupload.getPixelSizeY(), sequencetoupload.getPixelSizeZ(), elapsedtime,exposureTime, new Date());
rb.addImageData(new Dimension(time, slice, channel, 0), rawData, pixelData );
}
}
}
com.strandgenomics.imaging.iclient.Record record = rb.commit();
record.addCustomHistory("Record was uploaded using Icy Block from guid:"+mamaguid);
mamarecord.addCustomHistory("A new record using Icy Block has been created guid:"+record.getGUID());
System.out.println("Record correctly uploaded: new ID is : "+record.getGUID());
}
private void uploadSequence(String prjname, Sequence sequencetoupload) {
// TODO Auto-generated method stub
ImageSpace ispace = ImageSpaceObject.getConnectionManager();
Project prj=ispace.findProject(prjname);
List<Channel> channels = new ArrayList<Channel>();
for(int i=0;i<sequencetoupload.getSizeC();i++)
{
String name = sequencetoupload.getChannelName(i);
Channel channel = new Channel(name);
channels.add(channel);
}
List<Site> sites = new ArrayList<Site>();
sites.add(new Site(0, "Site 0"));
RecordBuilder rb = prj.createRecordBuilder(sequencetoupload.getName(), sequencetoupload.getSizeT(), sequencetoupload.getSizeZ(), channels, sites , sequencetoupload.getWidth(), sequencetoupload.getHeight(), getPixelDepth(sequencetoupload.getDataType_()), 1.0, 1.0, 1.0, ImageType.GRAYSCALE, new SourceFormat("IMG"), "", "/tmp", System.currentTimeMillis(), System.currentTimeMillis(), System.currentTimeMillis());
double interval = sequencetoupload.getTimeInterval();
double elapsedtime=interval;
if (sequencetoupload.getSizeT()>1)
elapsedtime=interval /(sequencetoupload.getSizeT()-1);
OMEXMLMetadataImpl omeMetadata = sequencetoupload.getMetadata();
Double exposureTime=1.0;
try{
exposureTime = (Double) omeMetadata.getPlaneExposureTime(0, 0).value();
}
catch (Exception e) {
exposureTime=1.0;
}
for(int time = 0; time<sequencetoupload.getSizeT();time++)
{
for(int slice = 0;slice<sequencetoupload.getSizeZ();slice++)
{
for(int channel = 0;channel<sequencetoupload.getSizeC();channel++)
{
PixelArray rawData = null;
if(getPixelDepth(sequencetoupload.getDataType_()) == PixelDepth.BYTE)
rawData = new PixelArray.Byte(((byte[])sequencetoupload.getDataCopyXY(time, slice, channel)), sequencetoupload.getWidth(), sequencetoupload.getHeight());
else if(getPixelDepth(sequencetoupload.getDataType_()) == PixelDepth.SHORT)
rawData = new PixelArray.Short(((short[])sequencetoupload.getDataCopyXY(time, slice, channel)), sequencetoupload.getWidth(), sequencetoupload.getHeight());
else if(getPixelDepth(sequencetoupload.getDataType_()) == PixelDepth.INT)
rawData = new PixelArray.Integer(((int[])sequencetoupload.getDataCopyXY(time, slice, channel)), sequencetoupload.getWidth(), sequencetoupload.getHeight());
else
{
System.out.println("unknown type");
return;
}
PixelMetaData pixelData = new PixelMetaData(new Dimension(time, slice, channel, 0), sequencetoupload.getPixelSizeX(),sequencetoupload.getPixelSizeY(), sequencetoupload.getPixelSizeZ(), elapsedtime,exposureTime, new Date());
rb.addImageData(new Dimension(time, slice, channel, 0), rawData, pixelData );
}
}
}
com.strandgenomics.imaging.iclient.Record record = rb.commit();
record.addCustomHistory("Record was uploaded using Icy Block");
System.out.println("Record correctly uploaded: new ID is : "+record.getGUID());
}
private PixelDepth getPixelDepth(DataType dataType_)
{
if(dataType_ == DataType.BYTE || dataType_ == DataType.UBYTE)
return PixelDepth.BYTE;
if(dataType_ == DataType.SHORT || dataType_ == DataType.USHORT)
return PixelDepth.SHORT;
if(dataType_ == DataType.INT || dataType_ == DataType.UINT)
return PixelDepth.INT;
throw new IllegalArgumentException("unknown data type");
}
@Override
protected void initialize() {
if (isHeadLess()){
addEzComponent(mamaguid);
}
addEzComponent(inputvarsequence);
if (!isHeadLess()){
// get the list of project to choose from
ImageSpace ispace = ImageSpaceObject.getConnectionManager();
List<Project> listofproj = ispace.getActiveProjects();
listofprojectnames=new String[listofproj.size()];
for (int i=0; i<listofproj.size();i++){
listofprojectnames[i]=listofproj.get(i).getName();
}
choiceproject= new EzVarText("Upload in project: ", listofprojectnames , 0, false);
addEzComponent(choiceproject);
}
}
@Override
public void declareInput(VarList inputMap) {
// TODO Auto-generated method stub
inputMap.add("MAMAGUID", mamaguid.getVariable());
inputMap.add("SequenceToUpload", inputsequence);
}
@Override
public void declareOutput(VarList outputMap) {
}
private DataType getDataType(PixelDepth pixelDepth)
{
if(pixelDepth == PixelDepth.BYTE)
return DataType.UBYTE;
if(pixelDepth == PixelDepth.SHORT)
return DataType.USHORT;
if(pixelDepth == PixelDepth.INT)
return DataType.UINT;
throw new IllegalArgumentException("unknown data type");
}
}