1 new changeset in galaxy-central:
http://bitbucket.org/galaxy/galaxy-central/changeset/cacc1f179af3/
changeset: r5463:cacc1f179af3
user: kanwei
date: 2011-04-27 23:33:08
summary: trackster: Fix incorrect "end" calculation
affected #: 1 file (14 bytes)
--- a/lib/galaxy/visualization/tracks/data_providers.py Wed Apr 27 17:06:14 2011 -0400
+++ b/lib/galaxy/visualization/tracks/data_providers.py Wed Apr 27 17:33:08 2011 -0400
@@ -424,10 +424,10 @@
return filters
def get_iterator( self, chrom, start, end ):
- if end >= 2<<29:
+ start, end = int(start), int(end)
+ if end >= (2<<29):
end = (2<<29 - 1) # Tabix-enforced maximum
- start, end = int(start), int(end)
-
+
bgzip_fname = self.dependencies['bgzip'].file_name
# if os.path.getsize(self.converted_dataset.file_name) == 0:
Repository URL: https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
1 new changeset in galaxy-central:
http://bitbucket.org/galaxy/galaxy-central/changeset/cef47f0ab8f2/
changeset: r5460:cef47f0ab8f2
user: fubar
date: 2011-04-27 18:41:57
summary: Large push with modifications to the Picard tools recently added plus 5 new ones
and tests
Also includes fastqc which is a very comprehensive QC report generator for
sam/bam and fastq
affected #: 42 files (22.5 KB)
Diff too large to display.
Repository URL: https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
1 new changeset in galaxy-central:
http://bitbucket.org/galaxy/galaxy-central/changeset/14bce81c0a30/
changeset: r5459:14bce81c0a30
user: dan
date: 2011-04-26 17:25:54
summary: When label text for a static option in a SelectToolParameter is not provided, default to using the 'value'.
affected #: 1 file (9 bytes)
--- a/lib/galaxy/tools/parameters/basic.py Mon Apr 25 19:01:39 2011 -0400
+++ b/lib/galaxy/tools/parameters/basic.py Tue Apr 26 11:25:54 2011 -0400
@@ -576,7 +576,7 @@
value = option.get( "value" )
self.legal_values.add( value )
selected = string_as_bool( option.get( "selected", False ) )
- self.static_options.append( ( option.text, value, selected ) )
+ self.static_options.append( ( option.text or value, value, selected ) )
self.is_dynamic = ( ( self.dynamic_options is not None ) or ( self.options is not None ) )
def get_options( self, trans, other_values ):
if self.options:
Repository URL: https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
1 new changeset in galaxy-central:
http://bitbucket.org/galaxy/galaxy-central/changeset/ab056c49b927/
changeset: r5458:ab056c49b927
user: kanwei
date: 2011-04-26 01:01:39
summary: Update pysam
affected #: 1 file (0 bytes)
--- a/eggs.ini Mon Apr 25 18:59:37 2011 -0400
+++ b/eggs.ini Mon Apr 25 19:01:39 2011 -0400
@@ -70,7 +70,7 @@
bx_python = _494c2d1d68b3
GeneTrack = _dev_48da9e998f0caf01c5be731e926f4b0481f658f0
SQLAlchemy = _dev_r6498
-pysam = _kanwei_6255075f4401
+pysam = _kanwei_5844008a1735
; dependency source urls, necessary for scrambling. for an explanation, see
; the wiki page above
Repository URL: https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.