Re: [Soaplab-users] Multiple input files with filelist
Brought to you by:
marsenger
From: Mahmut U. <ul...@eb...> - 2006-08-29 13:41:03
|
Hi Andrew, > Yes, in fact my problem was the missing :: on the command line and now it > works. > Final question, do you know if it is possible in Taverna to execute a > soaplab web service with the file list ? No, but it seems that having the following additional lines in SoaplabTask.java at line 82 fixes the problem. if (parameterValue instanceof ArrayList){ ArrayList v = (ArrayList)parameterValue; byte[][] realValue = new byte [v.size()][]; parameterValue = v.toArray(realValue); } Taverna doesn't have the notion of a special file that includes a list of input file names, similar to what we have in Soaplab AnalysisClient. In taverna, however we need to specify each input file individually. You can do this in the 'Run Workflow' window by first selecting 'New List' rather than 'New Input' then you need to load each file by selecting 'New Input' and then 'Load'. Regards, Mahmut |