1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/86f1e10a0819/ Changeset: 86f1e10a0819 User: jmchilton Date: 2014-10-02 18:41:52+00:00 Summary: Doh - sorry if I was the one that broke that. Affected #: 1 file diff -r dffff21295c3ab7ebb9e81a18d4f6639707d49b2 -r 86f1e10a08196db908c24c249c0e19b15bae8698 lib/galaxy/datatypes/binary.py --- a/lib/galaxy/datatypes/binary.py +++ b/lib/galaxy/datatypes/binary.py @@ -11,12 +11,14 @@ import struct import subprocess import tempfile +import re from galaxy import eggs eggs.require( "bx-python" ) from bx.seq.twobit import TWOBIT_MAGIC_NUMBER, TWOBIT_MAGIC_NUMBER_SWAP, TWOBIT_MAGIC_SIZE +from galaxy.util import sqlite from galaxy.datatypes.metadata import MetadataElement,ListParameter,DictParameter from galaxy.datatypes import metadata import dataproviders @@ -560,7 +562,7 @@ tables = [] columns = dict() rowcounts = dict() - conn = sqlite3.connect(dataset.file_name) + conn = sqlite.connect(dataset.file_name) c = conn.cursor() tables_query = "SELECT name,sql FROM sqlite_master WHERE type='table' ORDER BY name" rslt = c.execute(tables_query).fetchall() @@ -574,7 +576,7 @@ dataset.metadata.table_columns = columns dataset.metadata.table_row_count = rowcounts except Exception, exc: - pass + log.warn( '%s, set_meta Exception: %s', self, exc ) def sniff( self, filename ): # The first 16 bytes of any SQLite3 database file is 'SQLite format 3\0', and the file is binary. For details 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.