This file is indexed.

/usr/share/pegasus/examples/grid-rosetta/RosettaDAX.java is in pegasus-wms 4.4.0+dfsg-7.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/**
 *  Copyright 2007-2008 University Of Southern California
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing,
 *  software distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

import java.util.ArrayList;
import java.util.List;

import edu.isi.pegasus.planner.dax.*;

public class RosettaDAX {

    public void constructDAX(String daxfile){

        try{
            java.io.File cwdFile = new java.io.File (".");
            String cwd = cwdFile.getCanonicalPath(); 

            // construct a dax object 
            ADAG dax = new ADAG("rosetta");

            // executables and transformations
            // including this in the dax is a new feature in 
            // 3.0. Earlier you had a standalone transformation catalog
            Executable exe = new Executable("rosetta.exe");
            
            // the executable is not installed on the remote sites, so 
            // pick it up from the local file system
            exe.setInstalled(false);
            exe.addPhysicalFile("file://" + cwd + "/rosetta.exe", "local");
            
            // cluster the jobs together to lessen the grid overhead
            exe.addProfile("pegasus", "clusters.size", "3");
            
            // the dag needs to know about the executable to handle
            // transferrring 
            dax.addExecutable(exe);

            // all jobs depend on the flatfile databases
            List<File> inputs = new ArrayList<File>();
            recursiveAddToFileCollection(inputs,
                                         "minirosetta_database",
                                         "Rosetta Database");
            dax.addFiles(inputs); // for replica catalog

            // and some top level files
            File f1 = new File("design.resfile", File.LINK.INPUT);
            f1.addPhysicalFile("file://" + cwd + "/design.resfile", "local");
            dax.addFile(f1);
            inputs.add(f1); // dependency for the job
            File f2 = new File("repack.resfile", File.LINK.INPUT);
            f2.addPhysicalFile("file://" + cwd + "/repack.resfile", "local");
            dax.addFile(f2);
            inputs.add(f2); // dependency for the job

            java.io.File pdbDir = new java.io.File("pdbs/");
            String pdbs[] = pdbDir.list();
            for (int i = 0; i < pdbs.length; i++) {
                java.io.File pdb = new java.io.File("pdbs/" + pdbs[i]);
                if (pdb.isFile()) {
                    Job j = createJobFromPDB(dax, pdb, inputs);
                    dax.addJob(j);
                }
            }

            //write DAX to file
            dax.writeToFile(daxfile);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /*
     * This adds all the files in a directory to a set which can be used for job
     * data dependencies
     */ 
    private void recursiveAddToFileCollection(List<File> list, String dir, String desc) {
        try {
            java.io.File d = new java.io.File(dir);
            String items[] = d.list();
            for (int i = 0; i < items.length; i++) {
                if (items[i].substring(0,1).equals(".")) {
                    continue;
                }
                java.io.File f = new java.io.File(dir + "/" + items[i]);
                if (f.isFile()) {
                    // File found, let's add it to the list
                    File input = new File(dir + "/" + items[i], File.LINK.INPUT);
                    input.addPhysicalFile("file://" + f.getAbsolutePath(), "local");
                    list.add(input);
                }
                else {
                    recursiveAddToFileCollection(list, f.getPath(), desc);
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

    private Job createJobFromPDB(ADAG dax, java.io.File pdb, List<File> inputs) {

        Job job = null;

        try {
            String id = pdb.getName();
            id = id.replaceAll(".pdb", "");

            job = new Job(id, "rosetta.exe");
            
            // general rosetta inputs (database, design, ...)
            job.uses(inputs, File.LINK.INPUT);

            // input pdb file
            File pdbFile = new File(pdb.getName());
            pdbFile.addPhysicalFile("file://" + pdb.getAbsolutePath(), "local");
            job.uses(pdbFile, File.LINK.INPUT); // the job uses the file
            dax.addFile(pdbFile); // the dax needs to know about it to handle transfers
            
            // outputs
            File outFile = new File(pdb.getName() + ".score.sc");
            job.uses(outFile, File.LINK.OUTPUT); // the job uses the file

            // add the arguments to the job
            job.addArgument(" -in:file:s ");
            job.addArgument(pdbFile);
            job.addArgument(" -out:prefix " + pdb.getName() + ".");
            job.addArgument(" -database ./minirosetta_database");
            job.addArgument(" -linmem_ig 10");
            job.addArgument(" -nstruct 1");
            job.addArgument(" -pert_num 2");
            job.addArgument(" -inner_num 1");
            job.addArgument(" -jd2::ntrials 1");

        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }

        return job;
    }


    /**
     * Usage : RosettaDAX daxfile
     *
     * @param args the arguments passed
     */
    public static void main(String[] args) {
        RosettaDAX daxgen = new RosettaDAX();
        if (args.length == 1) {
            daxgen.constructDAX(args[0]);

        } else {
            System.out.println("Usage: RosettaDAX <outputdaxfile>");
        }
    }

}