CHECKED >
<%= tmp1 %>
<%
}
else {
%>
>
<%= tmp1 %>
<%
}
}
%>
Shell:
<% String shellchecked = cm.getCurrentSessionProperty("shell");
if(shellchecked.equals("/bin/csh/")) {
%>
/bin/csh
/bin/sh
<% }
else {
%>
/bin/csh
/bin/sh
<% }
%>
Queue:
<% String queuechecked = cm.getCurrentSessionProperty("queue");
if(queuechecked.equals("small")) {
%>
small
medium
large
default
<% }
else if (queuechecked.equals("medium")) {
%>
small
medium
large
default
<% }
else if (queuechecked.equals("large")) {
%>
small
medium
large
default
<% }
else {
%>
small
medium
large
default
<% }
%>
WallTime (hh:mm:ss):
">
Number of Nodes:
">
The code you have selected takes <%= cm.getCurrentSessionProperty("NumInParams")%> input parameter(s). These are the command line arguments.
See the code documentation for details.
<%
String slimit1 = cm.getCurrentSessionProperty("NumInParams");
if (!slimit1.equals("0")) {
int limit1=Integer.parseInt(slimit1);
String inputparamList = cm.getCurrentSessionProperty("inputParam");
StringTokenizer st = new StringTokenizer(inputparamList,"+");
for(int i=0;i
Input Parameter:
<%
}
}
%>
The following are the input files that you specified for the code.
Please provide the location of the input file(s) on the remote host,
<%= cm.getCurrentSessionProperty("MachineName") %>.
You can use the "Upload" button in the "Tools" area to transfer
your input file from your desktop to the remote host.
<%
String slimit2 = cm.getCurrentSessionProperty("NumInFiles");
if (!slimit2.equals("0")) {
int limit2=Integer.parseInt(slimit2);
String inputpathList = cm.getCurrentSessionProperty("inputFiles");
StringTokenizer st = new StringTokenizer(inputpathList,"+");
for(int i=0;i
Input File:
<%
}
}
%>
The application requires <%= cm.getCurrentSessionProperty("NumOutParams") %> out
put parameter(s).
<%
String suplimit1 = cm.getCurrentSessionProperty("NumOutParams");
if(!suplimit1.equals("0")) {
int uplimit1=Integer.parseInt(suplimit1);
String outputparamList = cm.getCurrentSessionProperty("outputParams")
;
StringTokenizer st1 = new StringTokenizer(outputparamList,"+");
for(int j=0;j
Output File:
<%
}
}
%>
Finally, this application generates <%= cm.getCurrentSessionProperty("NumOutFiles") %> output file(s). Please specify the full
path name of the directory on the HPC server where you would like this file
to be placed. You can later download this file to your desktop with the
"Download" button form the "Tools" area.
<%
String suplimit2 = cm.getCurrentSessionProperty("NumOutFiles");
if(!suplimit2.equals("0")) {
int uplimit2=Integer.parseInt(suplimit2);
String outputpathList = cm.getCurrentSessionProperty("outputFiles");
StringTokenizer st1 = new StringTokenizer(outputpathList,"+");
for(int j=0;j
Output File:
<%
}
}
%>