[hg] galaxy 2728: minor track typos
details: http://www.bx.psu.edu/hg/galaxy/rev/9d615c906e6c changeset: 2728:9d615c906e6c user: Kanwei Li <kanwei@gmail.com> date: Fri Sep 18 22:41:11 2009 -0400 description: minor track typos 1 file(s) affected in this change: lib/galaxy/web/controllers/tracks.py diffs (30 lines): diff -r 71dbd24649e4 -r 9d615c906e6c lib/galaxy/web/controllers/tracks.py --- a/lib/galaxy/web/controllers/tracks.py Fri Sep 18 21:04:58 2009 -0400 +++ b/lib/galaxy/web/controllers/tracks.py Fri Sep 18 22:41:11 2009 -0400 @@ -4,7 +4,7 @@ Track browsers are currently transient -- nothing is stored to the database when a browser is created. Building a browser consists of selecting a set of datasets associated with the same dbkey to display. Once selected, jobs -are started to create any neccesary indexes in the background, and the user +are started to create any necessary indexes in the background, and the user is redirected to the browser interface, which loads the appropriate datasets. Problems @@ -105,7 +105,7 @@ dbkey = dataset.dbkey chrom_lengths = self._chroms( trans, dbkey ) if chrom_lengths is None: - error( "No chromosome lengths file found for '%s'" ) + error( "No chromosome lengths file found for '%s'" % dataset.name ) return trans.fill_template( 'tracks/browser.mako', dataset_ids=dataset_ids, tracks=tracks, @@ -186,7 +186,7 @@ return dataset # See if we can convert the dataset if type not in dataset.get_converter_types(): - log.debug( "Converstion from '%s' to '%d' not possible", dataset.extension, type ) + log.debug( "Conversion from '%s' to '%d' not possible", dataset.extension, type ) return None # See if converted dataset already exists converted_datasets = dataset.get_converted_files_by_type( type )
participants (1)
-
Greg Von Kuster