Skip to content

Commit

Permalink
Revert genomespace tool changes related to FILENAME_VALID_CHARS
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Aug 11, 2016
1 parent ce04973 commit c9ac723
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/genomespace/genomespace_file_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
import urllib2
import urlparse

from galaxy.util import FILENAME_VALID_CHARS
from galaxy.datatypes import sniff
from galaxy.datatypes.registry import Registry

GENOMESPACE_API_VERSION_STRING = "v1.0"
GENOMESPACE_SERVER_URL_PROPERTIES = "https://dm.genomespace.org/config/%s/serverurl.properties" % ( GENOMESPACE_API_VERSION_STRING )
DEFAULT_GENOMESPACE_TOOLNAME = 'Galaxy'
FILENAME_VALID_CHARS = '.-()[]0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ '

CHUNK_SIZE = 2**20 # 1mb

Expand Down
2 changes: 1 addition & 1 deletion tools/genomespace/genomespace_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@

from galaxy.datatypes import sniff
from galaxy.datatypes.registry import Registry
from galaxy.util import FILENAME_VALID_CHARS

GENOMESPACE_API_VERSION_STRING = "v1.0"
GENOMESPACE_SERVER_URL_PROPERTIES = "https://dm.genomespace.org/config/%s/serverurl.properties" % ( GENOMESPACE_API_VERSION_STRING )
DEFAULT_GENOMESPACE_TOOLNAME = 'Galaxy'
FILENAME_VALID_CHARS = '.-()[]0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ '

CHUNK_SIZE = 2**20 # 1mb

Expand Down

0 comments on commit c9ac723

Please sign in to comment.