commit/galaxy-central: dan: Write a newline between intervals in BedDataProvider.write_data_to_file.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/1edea6b133ce/ changeset: 1edea6b133ce user: dan date: 2011-06-10 14:46:11 summary: Write a newline between intervals in BedDataProvider.write_data_to_file. affected #: 1 file (9 bytes) --- a/lib/galaxy/visualization/tracks/data_providers.py Thu Jun 09 18:35:42 2011 -0400 +++ b/lib/galaxy/visualization/tracks/data_providers.py Fri Jun 10 08:46:11 2011 -0400 @@ -604,7 +604,7 @@ iterator = self.get_iterator( chrom, start, end ) out = open( filename, "w" ) for line in iterator: - out.write( line ) + out.write( "%s\n" % line ) out.close() class VcfDataProvider( TabixDataProvider ): 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.
participants (1)
-
Bitbucket