Mercurial > repos > yufei-luo > s_mart
comparison commons/core/writer/GbWriter.py @ 36:44d5973c188c
Uploaded
author | m-zytnicki |
---|---|
date | Tue, 30 Apr 2013 15:02:29 -0400 |
parents | 769e306b7933 |
children |
comparison
equal
deleted
inserted
replaced
35:d94018ca4ada | 36:44d5973c188c |
---|---|
1 # | |
2 # Copyright INRA-URGI 2009-2010 | |
3 # | |
4 # This software is governed by the CeCILL license under French law and | |
5 # abiding by the rules of distribution of free software. You can use, | |
6 # modify and/ or redistribute the software under the terms of the CeCILL | |
7 # license as circulated by CEA, CNRS and INRIA at the following URL | |
8 # "http://www.cecill.info". | |
9 # | |
10 # As a counterpart to the access to the source code and rights to copy, | |
11 # modify and redistribute granted by the license, users are provided only | |
12 # with a limited warranty and the software's author, the holder of the | |
13 # economic rights, and the successive licensors have only limited | |
14 # liability. | |
15 # | |
16 # In this respect, the user's attention is drawn to the risks associated | |
17 # with loading, using, modifying and/or developing or reproducing the | |
18 # software by the user in light of its specific status of free software, | |
19 # that may mean that it is complicated to manipulate, and that also | |
20 # therefore means that it is reserved for developers and experienced | |
21 # professionals having in-depth computer knowledge. Users are therefore | |
22 # encouraged to load and test the software's suitability as regards their | |
23 # requirements in conditions enabling the security of their systems and/or | |
24 # data to be ensured and, more generally, to use and operate it in the | |
25 # same conditions as regards security. | |
26 # | |
27 # The fact that you are presently reading this means that you have had | |
28 # knowledge of the CeCILL license and that you accept its terms. | |
29 # | |
30 from commons.core.writer.TranscriptListWriter import TranscriptListWriter | |
31 | |
32 | |
33 class GbWriter(TranscriptListWriter): | |
34 """ | |
35 A class that writes a transcript list into a file with GBrowse format | |
36 @ivar fileName: name of the file | |
37 @type fileName: string | |
38 @ivar handle: handle to the file | |
39 @type handle: file handle | |
40 @ivar header: first lines of the file | |
41 @type header: string | |
42 """ | |
43 | |
44 | |
45 def __init__(self, fileName, verbosity = 0): | |
46 """ | |
47 Constructor | |
48 @param fileName: name of the file | |
49 @type fileName: string | |
50 @param verbosity: verbosity | |
51 @type verbosity: int | |
52 """ | |
53 self.header = "[READS]\nbgcolor = red\nstrand_arrow = 1\n\n" | |
54 super(GbWriter, self).__init__(fileName, verbosity) | |
55 | |
56 | |
57 @staticmethod | |
58 def getFileFormats(): | |
59 """ | |
60 Get the format of the file | |
61 """ | |
62 return ["gb", "gbrowse"] | |
63 | |
64 | |
65 @staticmethod | |
66 def getExtension(): | |
67 """ | |
68 Get the usual extension for the file | |
69 """ | |
70 return "gb" | |
71 | |
72 | |
73 def setColor(self, color): | |
74 """ | |
75 Set the color of the track | |
76 @param color: the color of the track | |
77 @type color: string | |
78 """ | |
79 if color != None: | |
80 self.header = "[READS]\nbgcolor= %s\nstrand_arrow = 1\n\n" % (color) | |
81 | |
82 | |
83 def copyProperties(self, gbParser): | |
84 """ | |
85 Copy the properties collected by a parser, to produce a similar output | |
86 @param gbParser: a GBrowse parser | |
87 @type gbParser: class L{GbParser<GbParser>} | |
88 """ | |
89 self.setColor(gbParser.color) | |
90 | |
91 | |
92 def printTranscript(self, transcript): | |
93 """ | |
94 Export the given transcript with GBrowse format | |
95 Possibly skip the reference if already put | |
96 @param transcript: transcript to be printed | |
97 @type transcript: class L{Transcript<Transcript>} | |
98 @return: a string | |
99 """ | |
100 if self.lastChromosome != None and self.lastChromosome == transcript.getChromosome(): | |
101 return transcript.printGBrowseLine() | |
102 return transcript.printGBrowse() |