File: dumpSummary.groovy

package info (click to toggle)
libgoby-java 3.3.1%2Bdfsg2-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 58,108 kB
  • sloc: java: 78,105; cpp: 5,011; xml: 3,170; python: 2,108; sh: 1,575; ansic: 277; makefile: 114
file content (64 lines) | stat: -rw-r--r-- 2,228 bytes parent folder | download | duplicates (2)
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
#!/bin/env groovy

/*
 * Copyright (C) 2009-2011 Institute for Computational Biomedicine,
 *                    Weill Medical College of Cornell University
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

//
// When files are sequenced, the directory containing the sequences (s_#_sequence.txt.gz)
// contains a file "Summary.xml". This will parse that file and display the
// sampleId's and sequenceId's within the summary file.
//
// As command line arguments, this script takes one or more summary files
// or directories. Any directories that are provided will be used to find
// the file Summary.xml.
//

import org.xml.sax.SAXParseException

for (arg in args) {
    def file = new File(arg)
    if (!file.exists()) {
        println "Argument ${arg} doesn't represent either a file or a directory"
        continue
    }
    if (file.isDirectory()) {
        file = new File(file, "Summary.xml")
    }
    parseXmlSummaryFile(file)
}


def parseXmlSummaryFile(File summaryFile) {
    if (!summaryFile.exists()) {
        println "Could not find file to parse: ${summaryFile.toString()}"
        return
    }
    println "Summary file: ${summaryFile.toString()}"
    try {
        def xml = new XmlParser().parse(summaryFile)
        def lanes = xml.Samples.Lane
        for (lane in lanes) {
            String laneNumber = lane.laneNumber.text().trim()
            String sampleId = lane.sampleId.text().trim()
            println "   sampldId = ${sampleId},   laneNumber=${laneNumber}"
        }
    } catch (SAXParseException e) {
        println "WARN: Couldn't parse ${summaryFile.toString()}"
    }

}