annotate TEisotools-1.1.a/TEiso/Cufflinks.py @ 15:255c852351c5 draft

Uploaded
author urgi-team
date Thu, 21 Jul 2016 07:36:44 -0400
parents feef9a0db09d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
1 #!/usr/bin/env python
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
2
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
3 # Copyright INRA (Institut National de la Recherche Agronomique)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
4 # http://www.inra.fr
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
5 # http://urgi.versailles.inra.fr
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
6 #
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
7 # This software is governed by the CeCILL license under French law and
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
8 # abiding by the rules of distribution of free software. You can use,
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
9 # modify and/ or redistribute the software under the terms of the CeCILL
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
10 # license as circulated by CEA, CNRS and INRIA at the following URL
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
11 # "http://www.cecill.info".
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
12 #
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
13 # As a counterpart to the access to the source code and rights to copy,
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
14 # modify and redistribute granted by the license, users are provided only
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
15 # with a limited warranty and the software's author, the holder of the
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
16 # economic rights, and the successive licensors have only limited
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
17 # liability.
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
18 #
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
19 # In this respect, the user's attention is drawn to the risks associated
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
20 # with loading, using, modifying and/or developing or reproducing the
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
21 # software by the user in light of its specific status of free software,
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
22 # that may mean that it is complicated to manipulate, and that also
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
23 # therefore means that it is reserved for developers and experienced
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
24 # professionals having in-depth computer knowledge. Users are therefore
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
25 # encouraged to load and test the software's suitability as regards their
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
26 # requirements in conditions enabling the security of their systems and/or
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
27 # data to be ensured and, more generally, to use and operate it in the
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
28 # same conditions as regards security.
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
29 #
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
30 # The fact that you are presently reading this means that you have had
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
31 # knowledge of the CeCILL license and that you accept its terms.
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
32
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
33 import os, sys
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
34 from commons.core.checker.CheckerUtils import CheckerUtils
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
35 from commons.core.utils.RepetOptionParser import RepetOptionParser
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
36 from commons.core.utils.FileUtils import FileUtils
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
37 import subprocess
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
38
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
39 class Cufflinks(object):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
40
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
41 def __init__(self, input_mapped = "", input_transcripts = "", workingDir = "", verbosity = 3):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
42 self._input_mapped = input_mapped
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
43 self._transcripts = input_transcripts
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
44 self._output_dir = workingDir
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
45 self._verbosity = verbosity
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
46
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
47 def setAttributesFromCmdLine(self):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
48 description = "It accepts aligned RNA-Seq reads and assembles the alignments into a parsimonious set of transcripts."
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
49 usage = "Cufflinks.py -i <hits.bam> -g <transcripts.gtf> -o <output-dir>\n"
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
50 parser = RepetOptionParser(description = description, usage = usage)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
51 parser.add_option( '-i', '--input_mapped', dest='input_mapped', help='aligned RNA-Seq reads' )
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
52 parser.add_option( '-g' , '--input_transcripts', dest='input_transcripts', help='GTF/GFF with known transcripts' , default="" )
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
53 parser.add_option( '-o', '--output_dir', dest='output_dir', help='write all output files to this directory', default = "")
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
54 options, args = parser.parse_args()
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
55 self.setAttributesFromOptions(options)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
56
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
57 def setAttributesFromOptions(self, options):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
58 self._input_mapped = options.input_mapped
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
59 self._transcripts = options.input_transcripts
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
60 self._output_dir = options.output_dir
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
61
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
62 def checkExecutables(self):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
63 if not CheckerUtils.isExecutableInUserPath("cufflinks"):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
64 raise Exception("ERROR: cufflinks must be in your path")
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
65
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
66 def checkOptions(self):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
67 if self._input_mapped != "":
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
68 if not FileUtils.isRessourceExists(self._input_mapped):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
69 raise Exception("ERROR: reference file %s does not exist!" % self._input_mapped)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
70 else:
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
71 raise Exception("ERROR: No specified -i option!")
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
72
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
73 if self._transcripts != "" :
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
74 if not FileUtils.isRessourceExists(self._input_mapped):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
75 raise Exception("ERROR: reference file %s does not exist!" % self._transcripts)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
76
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
77
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
78 def getCufflinksCmd(self, mapped, transcripts, output_dir ):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
79 if self._transcripts != "" :
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
80 cmd = 'cufflinks %s -g %s -o %s' % (mapped, transcripts , output_dir)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
81 else:
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
82 cmd = 'cufflinks %s -o %s' % (mapped , output_dir)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
83 # print cmd
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
84 return cmd
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
85
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
86 def run(self):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
87 self.checkExecutables()
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
88 self.checkOptions()
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
89 try:
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
90 workingDir = self._output_dir
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
91 if os.path.exists(workingDir):
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
92 print "ERROR: %s already exists." % workingDir
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
93 sys.exit(1)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
94 raise Exception("ERROR: %s already exists." % workingDir)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
95 cmd_cufflinks = self.getCufflinksCmd(self._input_mapped, self._transcripts, self._output_dir)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
96 ## hide output of subprocess: stdout = index_dir_stderr
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
97 fstdout = open( "cufflinks.log" , 'w' )
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
98 process = subprocess.Popen(cmd_cufflinks, shell = True, stdout = fstdout, stderr=subprocess.STDOUT)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
99 returncode = process.wait()
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
100 fstdout.close()
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
101 # get stderr, allowing for case where it's very large
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
102 fstdout = open("cufflinks.log", 'rb' )
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
103 stderr = ''
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
104 buffsize = 1048576
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
105 try:
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
106 while True:
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
107 stderr += fstdout.read( buffsize )
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
108 if not stderr or len( stderr ) % buffsize != 0:
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
109 break
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
110 except OverflowError:
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
111 pass
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
112 fstdout.close()
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
113 if returncode != 0:
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
114 raise Exception, stderr
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
115 os.system("mv cufflinks.log %s/cufflinks.log " % workingDir)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
116 except Exception:
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
117 raise Exception("ERROR in %s " % cmd_cufflinks)
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
118
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
119
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
120 if __name__ == "__main__":
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
121 iLaunch = Cufflinks()
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
122 iLaunch.setAttributesFromCmdLine()
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
123 iLaunch.run()
feef9a0db09d Uploaded
urgi-team
parents:
diff changeset
124