Monday, September 26, 2011
GCE11 Workshop Paper Submission Deadline Extension
Thursday, September 08, 2011
OGCE Workflow Tools Now in Apache Airavata
Wednesday, July 27, 2011
GCE11 Workshop
Positions available
Monday, April 04, 2011
OGCE Gadget Container GridShib Support
GridShib is optional, and gadget container deployments not using it will work as normal.
OGCE Gadget Container Part of Apache Rave Incubator
Wednesday, January 19, 2011
TG10 OGCE Paper
http://portal.acm.org/citation.cfm?id=1838590&CFID=6079067&CFTOKEN=84307850
Tuesday, December 07, 2010
OGCE SciDAC2010 Tutorial
OGCE TeraGrid 2010 ASTA Support
OGCE TeraGrid 2010 Science Gateway Tutorial Intro
Monday, December 06, 2010
Twitter, SlideShare
Wednesday, November 17, 2010
OGCE's XBaya Running a GridChem Workflow
Wednesday, November 10, 2010
OGCE Demos and Presentations at SC10 in New Orleans
- We have a mini-workshop Tuesday from 10:00 am - 12:00 noon at the IU booth.
- Monday-Thursday at the IU Booth, we have walk-up demos on demand at the interactive touch screen kiosk.
- Monday-Thursday at the Purdue Booth, we also have on demand demos.
- Wednesday from 1:00-2:00 pm, we have on demand presentations and demos at the NCSA booth.
Tuesday, November 09, 2010
GCE10 Program Now Available
Monday, August 30, 2010
GCE10 Deadline Extension
Sunday, August 01, 2010
TG10 Tutorial Agenda
1:00-2:15
- Introduction
- computational chemistry workflow demo
- build demo
2:30-5:00
- Hands on demo of OREChem workflow (using XBaya composer)
- Hands data mining tutorial (using XRegistry and Experiment Builder gadgets)
- Gadget container overview
Thursday, July 15, 2010
Sample Build Instructions Movie for OGCE Portal and Services
Wednesday, June 30, 2010
GCE10 Workshop Accepted for Supercomputing 2010
Thursday, June 03, 2010
Condor jDRMAA Example
package org.ogce.jobsub.api;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import org.ggf.drmaa.*;
import net.sf.igs.*;
public class DRMAAJobSubmission {
public static void main(String[] args) {
Session session = null;
String jobPath = "/bin/echo";
session = SessionFactory.getFactory().getSession();
String jobId = null;
JobTemplate jt = null;
JobInfo status = null;
ArrayList
argslist.add("Hello");
try {
System.out.println(session.getDrmSystem());
System.out.println(session.getContact());
System.out.println(session.getDrmaaImplementation());
session.init("localhost");
jt = session.createJobTemplate();
jt.setRemoteCommand(jobPath);
jt.setWorkingDirectory("/tmp");
jt.setJoinFiles(true);
jt.setOutputPath("/tmp/hello.out" );
jt.setArgs(argslist);
jt.setTransferFiles(new FileTransferMode(false, false, false));
} catch (DrmaaException e) {
e.printStackTrace();
}
try {
jobId = session.runJob(jt);
status = session.wait(jobId, Session.DONE);
if (status.wasAborted()) {
System.out.println("job " + jobId + " never ran");
} else if (status.hasExited ())
{
System.out.println("job " + jobId +
"finished successfully with Exit Status "
+ status.getExitStatus());
} else if (status.hasSignaled ())
{
System.out.println("job " + jobId + " finished due to signal" +
status.getTerminatingSignal ());
} else
{
System.out.println("job " + jobId +
" finished with unclear conditions");
}
} catch (DrmaaException e) {
System.out.println("Internal Exception: " + e.getMessage());
e.printStackTrace();
}
catch (org.ggf.drmaa.InternalException ie)
{
System.out.println("Internal Exception: " + ie.getMessage());
ie.printStackTrace();
}
}
}
Condor
Condor
job 25.0 finished successfully with Exit Status 0