commit/galaxy-central: dannon: Fix create_all_fasta_loc to work when inspect_dir is not set.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/8153e8d25009/ changeset: 8153e8d25009 user: dannon date: 2012-09-19 02:49:29 summary: Fix create_all_fasta_loc to work when inspect_dir is not set. affected #: 1 file diff -r 05a1728683032985f7feccc007b25c083d263c9b -r 8153e8d25009d71a523e0f2df24ed12922825d8f scripts/loc_files/create_all_fasta_loc.py --- a/scripts/loc_files/create_all_fasta_loc.py +++ b/scripts/loc_files/create_all_fasta_loc.py @@ -195,7 +195,7 @@ if options.inspect_dir: paths_to_look_in = [ os.path.join( options.genome_dir, '%s', id ) for id in options.inspect_dir.split( ',' ) ] else: - paths_to_look_in = os.path.join( options.genome_dir, '%s' ) + paths_to_look_in = [os.path.join( options.genome_dir, '%s' )] # say what we're looking in print '\nLooking in:\n\t%s' % '\n\t'.join( [ p % '<build_name>' for p in paths_to_look_in ] ) 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