diff --git a/lib/galaxy/tools/parameters/basic.py b/lib/galaxy/tools/parameters/basic.py index 3e03b56ecc2..7754ddf02df 100644 --- a/lib/galaxy/tools/parameters/basic.py +++ b/lib/galaxy/tools/parameters/basic.py @@ -1021,9 +1021,9 @@ class DataToolParameter( ToolParameter ): self.is_dynamic = self.options is not None def get_html_field( self, trans=None, value=None, other_values={} ): - filter_key = filter_value = None + filter_value = None if self.options: - filter_key, filter_value = self.options.get_options( trans, other_values ) + filter_value = self.options.get_options( trans, other_values )[0][0] assert trans is not None, "DataToolParameter requires a trans" history = trans.history assert history is not None, "DataToolParameter requires a history" @@ -1039,7 +1039,7 @@ class DataToolParameter( ToolParameter ): else: hid = str( data.hid ) if not data.deleted and data.state not in [data.states.ERROR] and data.visible: - if self.options and filter_key == 'dbkey' and data.get_dbkey() != filter_value: + if self.options and data.get_dbkey() != filter_value: continue if isinstance( data.datatype, self.formats): selected = ( value and ( data in value ) ) @@ -1089,9 +1089,9 @@ class DataToolParameter( ToolParameter ): return None history = trans.history most_recent_dataset = [None] - filter_key = filter_value = None + filter_value = None if self.options: - filter_key, filter_value = self.options.get_options( trans, context ) + filter_value = self.options.get_options( trans, context )[0][0] def dataset_collector( datasets ): def is_convertable( dataset ): for target_ext in self.extensions: @@ -1100,7 +1100,7 @@ class DataToolParameter( ToolParameter ): return False for i, data in enumerate( datasets ): if data.visible and not data.deleted and data.state not in [data.states.ERROR] and ( isinstance( data.datatype, self.formats) or is_convertable( data ) ): - if self.options and filter_key == 'build' and data.get_dbkey() != filter_value: + if self.options and data.get_dbkey() != filter_value: continue most_recent_dataset[0] = data # Also collect children via association object diff --git a/lib/galaxy/tools/parameters/dynamic_options.py b/lib/galaxy/tools/parameters/dynamic_options.py index 7ec45257d47..9457a06dd6f 100644 --- a/lib/galaxy/tools/parameters/dynamic_options.py +++ b/lib/galaxy/tools/parameters/dynamic_options.py @@ -5,517 +5,297 @@ on the values of other parameters or other aspects of the current state) import operator, sys, os, logging import basic, validation +from galaxy.util import string_as_bool log = logging.getLogger(__name__) +class Filter( object ): + + """ + A filter takes the current options list and modifies it. + """ + @classmethod + def from_element( cls, d_option, elem ): + type = elem.get( 'type', None ) + assert type is not None, "Required 'type' attribute missing from filter" + return filter_types[type.strip()]( d_option, elem ) + def __init__( self, d_option, elem ): + self.dynamic_option = d_option + self.elem = elem + def get_dependency_name( self ): + return None + def filter_options( self, trans, other_values ): + raise TypeError( "Abstract Method" ) + +class StaticValueFilter( Filter ): + def __init__( self, d_option, elem ): + Filter.__init__( self, d_option, elem ) + self.value = elem.get( "value", None ) + assert self.value is not None, "Required 'value' attribute missing from filter" + self.name = elem.get( "name", None ) + if self.name is None: + self.name = self.value + self.column = elem.get( "column", None ) + assert self.column is not None, "Required 'column' attribute missing from filter, when loading from file" + self.column = int ( self.column ) + def filter_options( self, options, trans, other_values ): + rval = [] + for fields in options: + if fields[self.column] == self.value: + rval.append( fields ) + return rval + +class DataMetaFilter( Filter ): + def __init__( self, d_option, elem ): + Filter.__init__( self, d_option, elem ) + self.ref_name = elem.get( "ref", None ) + assert self.ref_name is not None, "Required 'ref' attribute missing from filter" + self.key = elem.get( "key", None ) + assert self.key is not None, "Required 'key' attribute missing from filter" + self.column = elem.get( "column", None ) + if self.column is None: + assert self.dynamic_option.file_fields is None or self.dynamic_option.dataset_ref_name is None, "Required 'column' attribute missing from filter, when loading from file" + else: + self.column = int ( self.column ) + self.multiple = elem.get( "multiple", "False" ) + self.multiple = string_as_bool( self.multiple ) + self.separator = elem.get( "separator", "," ) + def get_dependency_name( self ): + return self.ref_name + def filter_options( self, options, trans, other_values ): + def compare_meta_value( file_value, dataset_value ): + if isinstance( dataset_value, list ): + if self.multiple: + file_value = file_value.split( self.separator ) + for value in dataset_value: + if value not in file_value: + return False + return True + return file_value in dataset_value + if self.multiple: + return dataset_value in file_value.split( self.separator ) + return file_value == dataset_value + ref = other_values.get( self.ref_name, None ) + assert ref is not None, "Required dependency '%s' not found in incoming values" % ref + if not isinstance( ref, self.dynamic_option.tool_param.tool.app.model.Dataset ): + return [] #not a valid dataset + meta_value = ref.metadata.get( self.key, None ) + assert meta_value is not None, "Required metadata value '%s' not found in referenced dataset" % self.key + + if self.column is not None: + rval = [] + for fields in options: + if compare_meta_value( fields[self.column], meta_value ): + rval.append( fields ) + return rval + else: + if not isinstance( meta_value, list ): + meta_value = [meta_value] + for value in meta_value: + options.append( ( value, value, False ) ) + return options + +class ParamValueFilter( Filter ): + def __init__( self, d_option, elem ): + Filter.__init__( self, d_option, elem ) + self.ref_name = elem.get( "ref", None ) + assert self.ref_name is not None, "Required 'ref' attribute missing from filter" + self.column = elem.get( "column", None ) + assert self.column is not None, "Required 'column' attribute missing from filter" + self.column = int ( self.column ) + def get_dependency_name( self ): + return self.ref_name + def filter_options( self, options, trans, other_values ): + ref = other_values.get( self.ref_name, None ) + assert ref is not None, "Required dependency '%s' not found in incoming values" % ref + rval = [] + for fields in options: + if fields[self.column] == str( ref ): + rval.append( fields ) + return rval + +class UniqueValueFilter( Filter ): + def __init__( self, d_option, elem ): + Filter.__init__( self, d_option, elem ) + self.column = elem.get( "column", None ) + assert self.column is not None, "Required 'column' attribute missing from filter" + self.column = int ( self.column ) + def get_dependency_name( self ): + return self.dynamic_option.dataset_ref_name + def filter_options( self, options, trans, other_values ): + rval = [] + skip_list = [] + for fields in options: + if fields[self.column] not in skip_list: + rval.append( fields ) + skip_list.append( fields[self.column] ) + return rval + +class MultipleSplitterFilter( Filter ): + def __init__( self, d_option, elem ): + Filter.__init__( self, d_option, elem ) + self.separator = elem.get( "separator", "," ) + self.columns = elem.get( "column", None ) + assert self.columns is not None, "Required 'columns' attribute missing from filter" + self.columns = [ int ( column ) for column in self.columns.split( "," ) ] + def filter_options( self, options, trans, other_values ): + rval = [] + for fields in options: + for column in self.columns: + for field in fields[column].split( self.separator ): + rval.append( fields[0:column] + [field] + fields[column:] ) + return rval + +class AdditionalValueFilter( Filter ): + def __init__( self, d_option, elem ): + Filter.__init__( self, d_option, elem ) + self.value = elem.get( "value", None ) + assert self.value is not None, "Required 'value' attribute missing from filter" + self.name = elem.get( "name", None ) + if self.name is None: + self.name = self.value + self.index = elem.get( "index", None ) + if self.index is not None: + self.index = int( self.index ) + def filter_options( self, options, trans, other_values ): + rval = list( options ) + add_value = [] + for i in range( self.dynamic_option.largest_index + 1 ): + add_value.append( "" ) + add_value[self.dynamic_option.columns['value']] = self.value + add_value[self.dynamic_option.columns['name']] = self.name + if self.index is not None: + rval.insert( self.index, add_value ) + else: + rval.append( add_value ) + return rval + +class SortByColumnFilter( Filter ): + def __init__( self, d_option, elem ): + Filter.__init__( self, d_option, elem ) + self.column = elem.get( "column", None ) + assert self.column is not None, "Required 'column' attribute missing from filter" + self.column = int( self.column ) + def filter_options( self, options, trans, other_values ): + rval = [] + for i, fields in enumerate( options ): + for j in range( 0, len( rval ) ): + if fields[self.column] < rval[j][self.column]: + rval.insert( j, fields ) + break + else: + rval.append( fields ) + return rval + + +filter_types = dict( data_meta = DataMetaFilter, + param_value = ParamValueFilter, + static_value = StaticValueFilter, + unique_value = UniqueValueFilter, + multiple_splitter = MultipleSplitterFilter, + add_value = AdditionalValueFilter, + sort_by = SortByColumnFilter ) + class DynamicOptions( object ): """Handles dynamically generated SelectToolParameter options""" def __init__( self, elem, tool_param ): + def load_from_parameter( from_parameter, transform_lines = None ): + obj = self.tool_param + for field in from_parameter.split( '.' ): + obj = getattr( obj, field ) + if transform_lines: + obj = eval( transform_lines ) + return self.parse_file_fields( obj ) self.tool_param = tool_param - self.data_ref = None - self.param_ref = None - self.data_file_path = None - self.data_file_data = None + self.columns = {} + self.filters = [] + self.file_fields = None + self.largest_index = 0 + self.dataset_ref_name = None self.validators = [] - - # Parse the options tag - self.data_file = elem.get( 'from_file', None ) - if self.data_file is not None: - self.data_file = self.data_file.strip() - self.name_col = elem.get( 'name_col', None ) - if self.name_col is not None: - self.name_col = int( self.name_col.strip() ) - self.value_col = elem.get( 'value_col', None ) - if self.value_col is not None: - self.value_col = int( self.value_col.strip() ) - self.separator = elem.get( 'seperator', '\t' ) - self.line_startswith = elem.get( 'line_startswith', None ) - - # Parse the Validator tags + + # Parse the tag + self.separator = elem.get( 'separator', '\t' ) + self.line_startswith = elem.get( 'startswith', None ) + data_file = elem.get( 'from_file', None ) + dataset_file = elem.get( 'from_dataset', None ) + from_parameter = elem.get( 'from_parameter', None ) + if data_file is not None or dataset_file is not None or from_parameter is not None: + for column_elem in elem.findall( 'column' ): + name = column_elem.get( 'name', None ) + assert name is not None, "Required 'name' attribute missing from column def" + index = column_elem.get( 'index', None ) + assert index is not None, "Required 'index' attribute missing from column def" + index = int( index ) + self.columns[name] = index + if index > self.largest_index: + self.largest_index = index + assert 'value' in self.columns, "Required 'value' column missing from column def" + if 'name' not in self.columns: + self.columns['name'] = self.columns['value'] + + if data_file is not None: + data_file = data_file.strip() + if not data_file.startswith( 'static' ) and not os.path.isabs( data_file ): + data_file = os.path.join( self.tool_param.tool.app.config.tool_data_path, data_file ) + self.file_fields = self.parse_file_fields( open( data_file ) ) + elif dataset_file is not None: + self.from_parameter = dataset_file + elif from_parameter is not None: + transform_lines = elem.get( 'transform_lines', None ) + self.file_fields = list( load_from_parameter( from_parameter, transform_lines ) ) + # Load filters + for filter_elem in elem.findall( 'filter' ): + self.filters.append( Filter.from_element( self, filter_elem ) ) + + # Load Validators for validator in elem.findall( 'validator' ): validator_type = validator.get( 'type', None ) assert validator_type is not None, "Required 'type' attribute missing from validator" - validator_type = validator_type.strip() self.validators.append( validation.Validator.from_element( self.tool_param, validator ) ) - - # Parse the filter tags - self.filters = elem.findall( 'filter' ) - for filter in self.filters: - filter_type = filter.get( 'type', None ) - assert filter_type is not None, "Required 'type' attribute missing from filter" - filter_type = filter_type.strip() - - if filter_type == 'data_meta': - self.data_ref = filter.get( 'data_ref', None ) - assert self.data_ref is not None, "Required 'data_ref' attribute missing from 'data_meta' filter" - self.data_ref = self.data_ref.strip() - - elif filter_type == 'param_meta': - self.param_ref = filter.get( 'param_ref', None ) - assert self.param_ref is not None, "Required 'param_ref' attribute missing from 'param_meta' filter" - self.param_ref = self.param_ref.strip() + + def parse_file_fields( self, reader ): + rval = [] + for line in reader: + if line.startswith( '#' ) or ( self.line_startswith and not line.startswith( self.line_startswith ) ): + continue + fields = line.rstrip("\n\r").split( self.separator ) + if self.largest_index < len( fields ): + rval.append( fields ) + return rval + def get_dependency_names( self ): """ Return the names of parameters these options depend on -- both data and other param types. """ rval = [] - if self.data_ref: - rval.append( self.data_ref ) - if self.param_ref: - rval.append( self.param_ref ) - return rval - def get_data_ref_value( self, trans, other_values ): - # No value indicates a configuration error, the named DataToolParameter must preceed this parameter in the tool config - assert self.data_ref in other_values, "Value for associated DataToolParameter not found" - # Get the value of the associated DataToolParameter (a dataset) - dataset = other_values[ self.data_ref ] - if dataset is None or dataset == '': - # Both of these values indicate that no dataset is selected. However, 'None' - # indicates that the dataset is optional while '' indicates that it is not. - # Currently dynamically generated select lists do not work well with optional datasets. - return None - return dataset - def get_param_value( self, param, trans, other_values ): - if param is None: - return None - assert param in other_values, "Value for associated param_value %s not found" %param - return other_values[ param ] - def get_param_ref_value( self, trans, other_values ): - if self.param_ref is None: - return None - assert self.param_ref in other_values, "Value for associated param_ref %s not found" %self.param_ref.name - return other_values[ self.param_ref ] - def get_unique_elems( self, elems ): - seen = set() - return [ x for x in elems if x not in seen and not seen.add( x ) ] - def get_options( self, trans, other_values ): - filters = {} - key = None - # Check for filters and build a dictionary from them + if self.dataset_ref_name: + rval.append( self.dataset_ref_name ) for filter in self.filters: - filter_type = filter.get( 'type', None ) - assert filter_type is not None, "'type' attribute missing from filter" - filter_type = filter_type.strip() - - if filter_type == 'data_meta': - filters[ 'data_meta' ] = {} - dataset = self.get_data_ref_value( trans, other_values ) - if dataset is None: - return [] - # meta_key is optional - meta_key = filter.get( 'meta_key', None ) - if meta_key is not None: - filters[ 'data_meta' ][ 'meta_key' ] = meta_key.strip() - if meta_key == 'dbkey': - meta_value = dataset.get_dbkey() - elif meta_key == 'species': - meta_value = dataset.metadata.species - filters[ 'data_meta' ][ 'meta_value' ] = meta_value - elif self.data_file == 'data_ref': - # We'll be reading data directly from the input dataset - filters[ 'data_meta' ][ 'meta_key' ] = 'data_ref' - self.data_file_path = dataset.get_file_name() - filters[ 'data_meta' ][ 'meta_value' ] = self.data_file_path - # meta_key_col is optional - meta_key_col = filter.get( 'meta_key_col', None ) - if meta_key_col is not None: - filters[ 'data_meta' ][ 'meta_key_col' ] = int( meta_key_col.strip() ) - - elif filter_type == 'param_meta': - filters[ 'param_meta' ] = {} - meta_value = self.get_param_ref_value( trans, other_values ) - filters[ 'param_meta' ][ 'meta_value' ] = meta_value - - elif filter_type == 'param_value': - n = filter.get( 'name', None ) - assert n is not None, "param_value filters require a 'name' attribute" - n = n.strip() - v = self.get_param_value( n, trans, other_values ) - assert v is not None, "param_value filters require a 'value' attribute" - v = v.strip() - try: - filters[ 'param_values' ][ n ] = v - except: - filters[ 'param_values' ] = {} - filters[ 'param_values' ][ n ] = v - - elif filter_type == 'param': - n = filter.get( 'name', None ) - assert n is not None, "param filters require a 'name' attribute" - n = n.strip() - v = filter.get( 'value', None ) - assert v is not None, "param filters require a 'value' attribute" - v = v.strip() - try: - filters[ 'params' ][ n ] = v - except: - filters[ 'params' ] = {} - filters[ 'params' ][ n ] = v - if self.data_file and self.data_file.startswith( 'static' ): - self.data_file_path = self.data_file - elif self.data_file not in [ None, 'data_ref' ] and not os.path.isabs( self.data_file ): - self.data_file_path = "%s/%s" % ( trans.app.config.tool_data_path, self.data_file ) - # Now that we've parsed our filters, we need to see if the tool is a maf tool - # which requires special handling - # TODO: remove or rework this if possible - try: - maf_source = filters[ 'params' ][ 'maf_source' ] - if maf_source == 'cached': - maf_uid = filters[ 'param_meta' ][ 'meta_value' ] - if maf_uid in [ None, 'None' ]: - return [] - return self.generate_for_maf( maf_uid, '\t' ) - elif maf_source == 'user': - dataset = self.get_data_ref_value( trans, other_values ) - filters[ 'data_meta' ][ 'meta_key' ] = 'species' - filters[ 'data_meta' ][ 'meta_value' ] = dataset.metadata.species - except: - pass - return self.generate_options( trans, filters=filters, sep=self.separator ) - def generate_options( self, trans, filters={}, sep='\t' ): - try: - meta_key = filters[ 'data_meta' ][ 'meta_key' ] - except: - try: - meta_key = filters[ 'param_meta' ][ 'meta_key' ] - except: - meta_key = None - if meta_key == 'species': - return self.generate_for_species( filters[ 'data_meta' ][ 'meta_value' ] ) - elif meta_key == 'data_ref': - dataset_file_name = filters[ 'data_meta' ][ 'meta_value' ] - return self.generate_from_dataset( dataset_file_name, self.value_col, sep=sep ) - elif meta_key == 'dbkey': - dbkey = filters[ 'data_meta' ][ 'meta_value' ] - if type( self.tool_param ) == basic.DataToolParameter: - return meta_key, dbkey - meta_key_col = filters[ 'data_meta' ][ 'meta_key_col' ] - return self.generate_for_dbkey( dbkey, meta_key_col, self.name_col, self.value_col, sep=sep ) - else: # meta_key is None - if self.data_file == 'datatypes_registry': - upload_file_formats = trans.app.datatypes_registry.upload_file_formats - return self.generate_from_datatypes_registry( upload_file_formats ) - elif self.data_file == 'encode_datasets.loc': - encode_group = filters[ 'params' ][ 'encode_group' ] - dbkey = filters[ 'params' ][ 'dbkey' ] - return self.generate_for_encode( encode_group, dbkey, sep=sep ) - elif self.data_file == 'microbial_data.loc': - if self.data_file_data is None: - self.load_microbial_data() - try: - kingdom = filters[ 'param_values' ][ 'kingdom' ] - except: - kingdom = None - try: - org = filters[ 'param_values' ][ 'org' ] - except: - org = None - try: - feature = filters[ 'params' ][ 'feature' ] - except: - feature = None - return self.generate_for_microbial( kingdom, org, feature ) - else: - return self.generate( self.name_col, self.value_col, sep=sep ) - def generate_from_datatypes_registry( self, upload_file_formats ): - options = [] - formats = upload_file_formats - formats.sort() - options.append( ( 'Auto-detect', 'auto', True ) ) - for format in formats: - label = format.capitalize() - options.append( ( label, format, False ) ) - return options - def generate_for_encode( self, encode_group, dbkey, sep='\t' ): - options = [] - def generate(): - encode_sets = {} - for line in open( self.data_file_path ): - line = line.rstrip( '\r\n' ) - if line and not line.startswith( '#' ): - try: - fields = line.split( sep ) - encode_group = fields[ 0 ] - dbkey = fields[ 1 ] - description = fields[ 2 ] - uid = fields[ 3 ] - path = fields[ 4 ] - try: - file_type = fields[ 5 ] - except: - file_type = "bed" - #TODO: will remove this later, when galaxy can handle gff files - if file_type != "bed": - continue - if not os.path.isfile( path ): - continue - except: - continue - try: - temp = encode_sets[ encode_group ] - except: - encode_sets[ encode_group ] = {} - try: - encode_sets[ encode_group ][ dbkey ].append( ( description, uid, False ) ) - except: - encode_sets[ encode_group ][ dbkey ] = [] - encode_sets[ encode_group ][ dbkey].append( ( description, uid, False ) ) - #Order by description and date, highest date on top and bold - for group in encode_sets: - for dbkey in encode_sets[ group ]: - ordered_dbkey = [] - for description, uid, selected in encode_sets[ group ][ dbkey ]: - item = {} - item[ 'date' ] = 0 - item[ 'description' ] = "" - item[ 'uid' ] = uid - item[ 'selected' ] = selected - item[ 'partitioned' ] = False - if description[ -21: ] == '[gencode_partitioned]': - item[ 'date' ] = description[ -31:-23 ] - item[ 'description' ] = description[ 0:-32 ] - item[ 'partitioned' ] = True - else: - item[ 'date' ] = description[ -9:-1 ] - item[ 'description' ] = description[ 0:-10 ] - - for i in range( len( ordered_dbkey ) ): - ordered_description, ordered_uid, ordered_selected, ordered_item = ordered_dbkey[ i ] - if item[ 'description' ] < ordered_item[ 'description' ]: - ordered_dbkey.insert( i, ( description, uid, selected, item ) ) - break - if item[ 'description' ] == ordered_item[ 'description' ] and item[ 'partitioned' ] == ordered_item[ 'partitioned' ]: - if int( item[ 'date' ] ) > int( ordered_item[ 'date' ] ): - ordered_dbkey.insert( i, ( description, uid, selected, item ) ) - break - else: - ordered_dbkey.append( ( description, uid, selected, item ) ) - last_desc = None - last_partitioned = None - for i in range( len( ordered_dbkey ) ) : - description, uid, selected, item = ordered_dbkey[ i ] - if item[ 'partitioned' ] != last_partitioned or last_desc != item[ 'description' ]: - last_desc = item[ 'description' ] - description = "" + description + "" - else: - last_desc = item[ 'description' ] - last_partitioned = item[ 'partitioned' ] - encode_sets[ group ][ dbkey ][ i ] = ( description, uid, selected ) - return encode_sets - d = generate() - try: - options = d[ encode_group ][ dbkey ][ 0: ] - except: - return [] - return options - def generate_for_microbial( self, kingdom=None, org=None, feature=None ): - options = [] - if not kingdom and not org and not feature: - kingdoms = self.data_file_data.keys() - kingdoms.sort() - for kingdom in kingdoms: - options.append( ( kingdom, kingdom, False ) ) - if options: - options[0] = ( options[0][0], options[0][1], True ) - elif kingdom and not org and not feature: - orgs = self.data_file_data[ kingdom ].keys() - #need to sort by name - swap_test = False - for i in range( 0, len( orgs ) - 1 ): - for j in range( 0, len( orgs ) - i - 1 ): - if self.data_file_data[ kingdom ][ orgs[ j ] ][ 'name' ] > self.data_file_data[ kingdom ][ orgs[ j + 1 ] ][ 'name' ]: - orgs[ j ], orgs[ j + 1 ] = orgs[ j + 1 ], orgs[ j ] - swap_test = True - if swap_test == False: - break - for org in orgs: - if self.data_file_data[ kingdom ][ org ][ 'link_site' ] == "UCSC": - options.append( ( "" + self.data_file_data[ kingdom ][ org ][ 'name' ] + " (about)", org, False ) ) - else: - options.append( ( self.data_file_data[ kingdom ][ org ][ 'name' ] + " (about)", org, False ) ) - if options: - options[0] = ( options[0][0], options[0][1], True ) - else: - chroms = self.data_file_data[ kingdom ][ org ][ 'chrs' ].keys() - chroms.sort() - for chr in chroms: - for data in self.data_file_data[ kingdom ][ org ][ 'chrs' ][ chr ][ 'data' ]: - if self.data_file_data[ kingdom ][ org ][ 'chrs' ][ chr ][ 'data' ][ data ][ 'feature' ] == feature: - options.append( ( self.data_file_data[ kingdom ][ org ][ 'chrs' ][ chr ][ 'name' ] + " (about)", data, False ) ) - return options - def load_microbial_data( self, sep='\t' ): - microbe_info= {} - orgs = {} - for line in open( self.data_file_path ): - line = line.rstrip( '\r\n' ) - if line and not line.startswith( '#' ): - fields = line.split( sep ) - #read each line, if not enough fields, go to next line - try: - info_type = fields.pop(0) - if info_type.upper() == "ORG": - #ORG 12521 Clostridium perfringens SM101 bacteria Firmicutes CP000312,CP000313,CP000314,CP000315 http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=genomeprj&cmd=Retrieve&dopt=Overview&list_uids=12521 - org_num = fields.pop(0) - name = fields.pop(0) - kingdom = fields.pop(0) - group = fields.pop(0) - chromosomes = fields.pop(0) - info_url = fields.pop(0) - link_site = fields.pop(0) - if org_num not in orgs: - orgs[ org_num ] = {} - orgs[ org_num ][ 'chrs' ] = {} - orgs[ org_num ][ 'name' ] = name - orgs[ org_num ][ 'kingdom' ] = kingdom - orgs[ org_num ][ 'group' ] = group - orgs[ org_num ][ 'chromosomes' ] = chromosomes - orgs[ org_num ][ 'info_url' ] = info_url - orgs[ org_num ][ 'link_site' ] = link_site - elif info_type.upper() == "CHR": - #CHR 12521 CP000315 Clostridium perfringens phage phiSM101, complete genome 38092 110684521 CP000315.1 - org_num = fields.pop(0) - chr_acc = fields.pop(0) - name = fields.pop(0) - length = fields.pop(0) - gi = fields.pop(0) - gb = fields.pop(0) - info_url = fields.pop(0) - chr = {} - chr[ 'name' ] = name - chr[ 'length' ] = length - chr[ 'gi' ] = gi - chr[ 'gb' ] = gb - chr[ 'info_url' ] = info_url - if org_num not in orgs: - orgs[ org_num ] = {} - orgs[ org_num ][ 'chrs' ] = {} - orgs[ org_num ][ 'chrs' ][ chr_acc ] = chr - elif info_type.upper() == "DATA": - #DATA 12521_12521_CDS 12521 CP000315 CDS bed /home/djb396/alignments/playground/bacteria/12521/CP000315.CDS.bed - uid = fields.pop(0) - org_num = fields.pop(0) - chr_acc = fields.pop(0) - feature = fields.pop(0) - filetype = fields.pop(0) - path = fields.pop(0) - data = {} - data[ 'filetype' ] = filetype - data[ 'path' ] = path - data[ 'feature' ] = feature + depend = filter.get_dependency_name() + if depend: + rval.append( depend ) + return rval - if org_num not in orgs: - orgs[ org_num ] = {} - orgs[ org_num ][ 'chrs' ] = {} - if 'data' not in orgs[ org_num ][ 'chrs' ][ chr_acc ]: - orgs[ org_num ][ 'chrs' ][ chr_acc ][ 'data' ] = {} - orgs[ org_num ][ 'chrs' ][ chr_acc ][ 'data' ][ uid ] = data - else: - continue - except: - continue - for org_num in orgs: - org = orgs[ org_num ] - if org[ 'kingdom' ] not in microbe_info: - microbe_info[ org[ 'kingdom' ] ] = {} - if org_num not in microbe_info[ org[ 'kingdom' ] ]: - microbe_info[ org[ 'kingdom' ] ][org_num] = org - self.data_file_data = microbe_info - def generate_for_species( self, species ): - options = [] - for s in species: - options.append( ( s, s, False ) ) - return options - def generate_for_maf( self, maf_uid, sep='\t' ): - options = [] - d = {} - for line in open( self.data_file_path ): - line = line.rstrip( '\r\n' ) - if line and not line.startswith( '#' ): - fields = line.split( sep ) - try: - name_col_data = fields[ 0 ] # ENCODE TBA (hg17) - value_col_data = fields[ 1 ] # ENCODE_TBA_hg17 - builds_col_data = fields[ 2 ] # armadillo=armadillo,baboon=baboon,galGal2=chicken,... - build_list = [] - builds = builds_col_data.split( ',' ) - for build in builds: - this_build = build.split( '=' )[ 0 ] - build_list.append( this_build ) - d[ value_col_data ] = {} - d[ value_col_data ][ 'description' ] = name_col_data - d[ value_col_data ][ 'builds' ] = build_list - except: - continue - for key in d[ maf_uid ][ 'builds' ]: - options.append( ( key, key, False ) ) - return options - def generate_from_dataset( self, file_name, value_col, sep='\t' ): - options = [] - elem_list = [] - try: - in_file = open( file_name, "r" ) - except: - return [] - try: - for line in in_file: - line = line.rstrip( "\r\n" ) - if line and not line.startswith( '#' ): - elems = line.split( sep ) - elem_list.append( elems[ value_col ] ) - except: - pass - in_file.close() - if not( elem_list ): - return [] - elem_list = self.get_unique_elems( elem_list ) - for elem in elem_list: - options.append( ( elem, elem, False ) ) - return options - def generate_for_dbkey( self, dbkey, dbkey_col, name_col, value_col, sep='\t' ): - options = [] - d = {} - for line in open( self.data_file_path ): - line = line.rstrip( '\r\n' ) - if not line or line.startswith( '#' ) or ( self.line_startswith and not line.startswith ( self.line_startswith ) ): - continue - fields = line.split( sep ) - if self.data_file == 'maf_index.loc' or self.data_file == 'maf_pairwise.loc': - try: - maf_desc = fields[ name_col ] # ENCODE TBA (hg17) - maf_uid = fields[ value_col ] # ENCODE_TBA_hg17 - dbkeys = fields[ dbkey_col ] # armadillo=armadillo,baboon=baboon,galGal2=chicken,... - dbkey_list = [] - split_dbkeys = dbkeys.split( ',' ) - for b in split_dbkeys: - this_dbkey = b.split( '=' )[0] - dbkey_list.append( this_dbkey ) - d[ maf_uid ] = {} - d[ maf_uid ][ 'description' ] = maf_desc - d[ maf_uid ][ 'builds' ] = dbkey_list - except: - continue - else: - if dbkey not in d: - d[ dbkey ] = [] - if dbkey == fields[ dbkey_col ].strip(): - d[ dbkey ].append( ( fields[ name_col ], fields[ value_col ] ) ) - if self.data_file == 'maf_index.loc' or self.data_file == 'maf_pairwise.loc': - for key in d: - if dbkey in d[ key ][ 'builds' ]: - options.append( ( d[ key ][ 'description' ], key, False ) ) + def get_fields( self, trans, other_values ): + if self.dataset_ref_name: + dataset = other_values.get( self.dataset_ref_name, None ) + assert dataset is not None, "Required dataset '%s' missing from input" % self.dataset_ref_name + options = self.parse_file_fields( open( dataset.file_name ) ) else: - if dbkey in d: - for name, value in d[ dbkey ]: - options.append( ( name, value, False ) ) + options = list( self.file_fields ) + for filter in self.filters: + options = filter.filter_options( options, trans, other_values ) return options - def generate( self, name_col, value_col, sep='\t' ): - options = [] - for line in open( self.data_file_path ): - line = line.rstrip( '\r\n' ) - if line and not line.startswith( '#' ): - fields = line.split( sep ) - options.append( ( fields[ name_col ], fields[ value_col ], False ) ) - return sorted( options, key=operator.itemgetter(0) ) - - + + def get_options( self, trans, other_values ): + rval = [] + if self.file_fields is not None or self.dataset_ref_name is not None: + options = self.get_fields( trans, other_values ) + for fields in options: + rval.append( ( fields[self.columns['name']], fields[self.columns['value']], False ) ) + else: + for filter in self.filters: + rval = filter.filter_options( rval, trans, other_values ) + return rval diff --git a/lib/galaxy/tools/util/maf_utilities.py b/lib/galaxy/tools/util/maf_utilities.py index ccbc58a7a8e..c4e6a53ce30 100644 --- a/lib/galaxy/tools/util/maf_utilities.py +++ b/lib/galaxy/tools/util/maf_utilities.py @@ -134,7 +134,7 @@ def maf_index_by_uid( maf_uid, index_location_file ): fields = line.split('\t') if maf_uid == fields[1]: try: - maf_files = fields[3].replace( "\n", "" ).replace( "\r", "" ).split( "," ) + maf_files = fields[4].replace( "\n", "" ).replace( "\r", "" ).split( "," ) return bx.align.maf.MultiIndexed( maf_files, keep_open = True, parse_e_rows = False ) except Exception, e: raise 'MAF UID (%s) found, but configuration appears to be malformed: %s' % ( maf_uid, e ) diff --git a/tool-data/maf_index.loc.sample b/tool-data/maf_index.loc.sample index e71e50d2950..c3a66c73402 100644 --- a/tool-data/maf_index.loc.sample +++ b/tool-data/maf_index.loc.sample @@ -2,20 +2,16 @@ #alignment tools. The maf_index.loc file has this format (white space #characters are TAB characters): # -# +# # -#ENCODE TBA (hg17) ENCODE_TBA_hg17 armadillo=armadillo,baboon=baboon,galGal2=chicken,panTro1=chimp,colobus_monkey=colobus_monkey,cow=cow,canFam1=dog,dusky_titi=dusky_titi,elephant=elephant,fr1=fugu,galago=galago,hedgehog=hedgehog,hg17=human,rheMac1=macaque,marmoset=marmoset,monDom1=monodelphis,mm6=mouse,mouse_lemur=mouse_lemur,owl_monkey=owl_monkey,platypus=platypus,rabbit=rabbit,rn3=rat,rfbat=rfbat,shrew=shrew,tenrec=tenrec,tetNig1=tetraodon,xenTro1=xenopus,danRer2=zebrafish /depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm001/human.ENm001.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm002/human.ENm002.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm003/human.ENm003.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm004/human.ENm004.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm005/human.ENm005.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm006/human.ENm006.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm007/human.ENm007.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm008/human.ENm008.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm009/human.ENm009.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm010/human.ENm010.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm011/human.ENm011.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm012/human.ENm012.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm013/human.ENm013.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm014/human.ENm014.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr111/human.ENr111.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr112/human.ENr112.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr113/human.ENr113.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr114/human.ENr114.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr121/human.ENr121.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr122/human.ENr122.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr123/human.ENr123.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr131/human.ENr131.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr132/human.ENr132.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr133/human.ENr133.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr211/human.ENr211.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr212/human.ENr212.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr213/human.ENr213.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr221/human.ENr221.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr222/human.ENr222.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr223/human.ENr223.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr231/human.ENr231.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr232/human.ENr232.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr233/human.ENr233.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr311/human.ENr311.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr312/human.ENr312.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr313/human.ENr313.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr321/human.ENr321.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr322/human.ENr322.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr323/human.ENr323.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr324/human.ENr324.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr331/human.ENr331.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr332/human.ENr332.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr333/human.ENr333.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr334/human.ENr334.maf -#ENCODE MAVID (hg17) ENCODE_MAVID_hg17 armadillo=armadillo,baboon=baboon,galGal2=chicken,panTro1=chimp,colobus_monkey=colobus_monkey,cow=cow,canFam1=dog,dusky_titi=dusky_titi,elephant=elephant,fr1=fugu,galago=galago,hedgehog=hedgehog,hg17=human,rheMac1=macaque,marmoset=marmoset,monDom1=monodelphis,mm6=mouse,mouse_lemur=mouse_lemur,owl_monkey=owl_monkey,platypus=platypus,rabbit=rabbit,rn3=rat,rfbat=rfbat,shrew=shrew,tenrec=tenrec,tetNig1=tetraodon,xenTro1=xenopus,danRer2=zebrafish /depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm001.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm002.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm003.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm004.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm005.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm006.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm007.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm008.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm009.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm010.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm011.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm012.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm013.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm014.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr111.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr112.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr113.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr114.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr121.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr122.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr123.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr131.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr132.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr133.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr211.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr212.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr213.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr221.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr222.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr223.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr231.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr232.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr233.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr311.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr312.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr313.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr321.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr322.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr323.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr324.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr331.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr332.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr333.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr334.maf -##ENCODE TBA (hg17) ENCODE_TBA_hg17 armadillo=armadillo,baboon=baboon,galGal2=chicken,panTro1=chimp,colobus_monkey=colobus_monkey,cow=cow,canFam1=dog,dusky_titi=dusky_titi,elephant=elephant,fr1=fugu,galago=galago,hedgehog=hedgehog,hg17=human,rheMac1=macaque,marmoset=marmoset,monDom1=monodelphis,mm6=mouse,mouse_lemur=mouse_lemur,owl_monkey=owl_monkey,platypus=platypus,rabbit=rabbit,rn3=rat,rfbat=rfbat,shrew=shrew,tenrec=tenrec,tetNig1=tetraodon,xenTro1=xenopus,danRer2=zebrafish /depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm001/human.ENm001.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm002/human.ENm002.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm003/human.ENm003.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm004/human.ENm004.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm005/human.ENm005.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm006/human.ENm006.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm007/human.ENm007.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm008/human.ENm008.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm009/human.ENm009.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm010/human.ENm010.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm011/human.ENm011.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm012/human.ENm012.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm013/human.ENm013.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENm014/human.ENm014.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr111/human.ENr111.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr112/human.ENr112.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr113/human.ENr113.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr114/human.ENr114.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr121/human.ENr121.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr122/human.ENr122.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr123/human.ENr123.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr131/human.ENr131.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr132/human.ENr132.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr133/human.ENr133.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr211/human.ENr211.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr212/human.ENr212.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr213/human.ENr213.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr221/human.ENr221.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr222/human.ENr222.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr223/human.ENr223.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr231/human.ENr231.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr232/human.ENr232.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr233/human.ENr233.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr311/human.ENr311.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr312/human.ENr312.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr313/human.ENr313.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr321/human.ENr321.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr322/human.ENr322.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr323/human.ENr323.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr324/human.ENr324.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr331/human.ENr331.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr332/human.ENr332.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr333/human.ENr333.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/tba/ENr334/human.ENr334.maf -##ENCODE MAVID (hg17) ENCODE_MAVID_hg17 armadillo=armadillo,baboon=baboon,galGal2=chicken,panTro1=chimp,colobus_monkey=colobus_monkey,cow=cow,canFam1=dog,dusky_titi=dusky_titi,elephant=elephant,fr1=fugu,galago=galago,hedgehog=hedgehog,hg17=human,rheMac1=macaque,marmoset=marmoset,monDom1=monodelphis,mm6=mouse,mouse_lemur=mouse_lemur,owl_monkey=owl_monkey,platypus=platypus,rabbit=rabbit,rn3=rat,rfbat=rfbat,shrew=shrew,tenrec=tenrec,tetNig1=tetraodon,xenTro1=xenopus,danRer2=zebrafish /depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm001.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm002.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm003.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm004.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm005.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm006.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm007.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm008.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm009.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm010.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm011.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm012.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm013.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENm014.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr111.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr112.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr113.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr114.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr121.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr122.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr123.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr131.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr132.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr133.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr211.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr212.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr213.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr221.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr222.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr223.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr231.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr232.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr233.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr311.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr312.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr313.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr321.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr322.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr323.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr324.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr331.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr332.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr333.maf,/depot/data2/galaxy/hg17/align/encode/september2005_relabeled/mavid/abs/ENr334.maf -#ENCODE TBA (hg16) ENCODE_TBA_hg16 armadillo=armadillo,baboon=baboon,galGal2=galGal2,panTro1=panTro1,colobus_monkey=colobus_monkey,cow=cow,canFam1=canFam1,dusky_titi=dusky_titi,elephant=elephant,fr1=fr1,galago=galago,hedgehog=hedgehog,hg16=hg16,rheMac1=rheMac1,marmoset=marmoset,monDom1=monDom1,mm6=mm6,mouse_lemur=mouse_lemur,owl_monkey=owl_monkey,platypus=platypus,rabbit=rabbit,rn3=rn3,rfbat=rfbat,shrew=shrew,tenrec=tenrec,tetNig1=tetNig1,xenTro1=xenopus,danRer2=danRer2 /depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm001.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm002.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm003.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm004.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm005.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm006.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm007.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm008.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm009.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm010.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm011.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm012.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm013.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm014.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr111.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr112.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr113.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr114.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr121.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr122.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr123.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr131.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr132.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr133.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr211.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr212.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr213.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr221.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr222.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr223.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr231.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr232.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr233.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr311.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr312.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr313.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr321.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr322.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr323.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr324.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr331.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr332.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr333.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr334.maf -#8-way multiZ (hg17) 8_WAY_MULTIZ_hg17 canFam1,danRer1,fr1,galGal2,hg17,mm5,panTro1,rn3 /depot/data2/galaxy/hg17/align/8way-multiZ/chr1.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr1_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr10.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr10_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr11.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr12.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr12_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr13.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr13_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr14.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr15.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr15_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr16.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr16_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr17.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr17_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr18.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr18_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr19.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr19_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr2.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr2_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr20.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr21.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr22.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr22_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr3.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr3_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr4.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr4_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr5.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr5_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr6.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr6_hla_hap1.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr6_hla_hap2.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr6_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr7.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr7_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr8.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr8_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr9.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr9_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chrM.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chrX.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chrX_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chrY.maf -#17-way multiZ (hg18) 17_WAY_MULTIZ_hg18 hg18,panTro1,bosTau2,rheMac2,mm8,rn4,canFam2,echTel1,loxAfr1,oryCun1,danRer3,monDom4,dasNov1,galGal2,fr1,tetNig1,xenTro1 /depot/data2/galaxy/hg18/align/17way-multiZ/chr10.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr10_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr11.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr11_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr12.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr13.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr13_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr14.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr15.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr15_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr16.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr16_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr17.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr17_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr18.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr18_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr19.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr19_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr1.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr1_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr20.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr21.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr21_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr22_h2_hap1.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr22.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr22_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr2.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr2_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr3.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr3_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr4.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr4_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr5_h2_hap1.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr5.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr5_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr6_cox_hap1.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr6.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr6_qbl_hap2.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr6_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr7.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr7_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr8.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr8_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr9.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr9_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chrM.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chrX.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chrX_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chrY.maf -##3-way multiZ (hg18,panTro2,rheMac2) 3_WAY_MULTIZ_hg18 hg18,panTro2,rheMac2 /cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr10.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr10_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr11.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr11_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr12.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr13.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr13_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr14.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr15.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr15_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr16.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr16_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr17.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr17_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr18.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr18_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr19.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr19_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr1.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr1_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr20.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr21.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr21_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr22_h2_hap1.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr22.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr22_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr2.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr2_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr3.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr3_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr4.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr4_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr5_h2_hap1.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr5.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr5_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr6_cox_hap1.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr6.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr6_qbl_hap2.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr6_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr7.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr7_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr8.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr8_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr9.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chr9_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chrM.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chrX.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chrX_random.maf,/cache/maf/hg18/align/hg18.panTro2.rheMac2.multiZ/chrY.maf -#3-way multiZ (hg18,panTro2,rheMac2) 3_WAY_MULTIZ_hg18 hg18,panTro2,rheMac2 /depot/data2/galaxy/hg18/align/3way-multiZ/chr10.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr10_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr11.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr11_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr12.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr13.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr13_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr14.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr15.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr15_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr16.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr16_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr17.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr17_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr18.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr18_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr19.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr19_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr1.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr1_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr20.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr21.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr21_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr22_h2_hap1.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr22.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr22_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr2.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr2_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr3.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr3_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr4.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr4_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr5_h2_hap1.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr5.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr5_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr6_cox_hap1.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr6.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr6_qbl_hap2.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr6_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr7.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr7_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr8.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr8_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr9.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr9_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chrM.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chrX.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chrX_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chrY.maf -#5-way multiZ (hg18,panTro2,rheMac2,mm8,canFam2) 5_WAY_MULTIZ_hg18 hg18,panTro2,rheMac2,mm8,canFam2 /depot/data2/galaxy/hg18/align/5way-multiZ/chr10.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr10_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr11.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr11_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr12.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr13.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr13_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr14.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr15.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr15_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr16.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr16_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr17.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr17_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr18.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr18_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr19.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr19_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr1.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr1_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr20.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr21.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr21_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr22_h2_hap1.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr22.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr22_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr2.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr2_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr3.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr3_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr4.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr4_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr5_h2_hap1.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr5.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr5_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr6_cox_hap1.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr6.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr6_qbl_hap2.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr6_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr7.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr7_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr8.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr8_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr9.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr9_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chrM.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chrX.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chrX_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chrY.maf -##28-way multiZ (hg18) 28_WAY_MULTIZ_hg18 hg18 /depot/data2/galaxy/hg18/align/multiz28way/chr10.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr10_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr11.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr11_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr12.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr13.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr13_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr14.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr15.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr15_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr16.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr16_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr17.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr17_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr18.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr18_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr19.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr19_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr1.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr1_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr20.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr21.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr21_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr22_h2_hap1.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr22.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr22_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr2.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr2_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr3.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr3_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr4.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr4_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr5_h2_hap1.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr5.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr5_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr6_cox_hap1.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr6.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr6_qbl_hap2.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr6_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr7.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr7_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr8.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr8_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr9.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chr9_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chrM.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chrX.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chrX_random.maf.bz2,/depot/data2/galaxy/hg18/align/multiz28way/chrY.maf.bz2 -#28-way multiZ (hg18) 28_WAY_MULTIZ_hg18 hg18 /depot/data2/galaxy/hg18/align/multiz28way/chr1.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr10.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr10_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr11.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr11_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr12.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr13.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr13_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr14.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr15.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr15_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr16.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr16_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr17.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr17_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr18.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr18_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr19.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr19_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr1_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr2.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr20.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr21.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr21_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr22.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr22_h2_hap1.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr22_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr2_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr3.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr3_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr4.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr4_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr5.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr5_h2_hap1.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr5_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr6.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr6_cox_hap1.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr6_qbl_hap2.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr6_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr7.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr7_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr8.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr8_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr9.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr9_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chrM.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chrX.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chrX_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chrY.maf.lzo -#15-way multiZ (dm2) 15_WAY_MULTIZ_dm2 dm2,droSim1,droSec1,droYak2,droEre2,droAna3,dp4,droPer1,droWil1,droVir3,droMoj3,droGri2,anoGam1,apiMel2,triCas2 /depot/data2/galaxy/dm2/align/multiz15way/chr2L.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr2R.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr2h.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr3L.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr3R.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr3h.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr4.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr4h.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrM.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrU.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrX.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrXh.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrYh.maf -#17-way multiZ (mm8) 17_WAY_MULTIZ_mm8 mm8 /depot/data2/galaxy/mm8/align/multiz17way/chr10.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr10_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr11.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr12.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr13.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr13_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr14.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr15.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr15_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr16.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr17.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr17_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr18.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr19.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr1.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr1_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr2.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr3.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr4.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr5.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr5_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr6.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr7.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr7_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr8.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr8_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr9.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr9_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrM.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrUn_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrX.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrX_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrY.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrY_random.maf.lzo -#8-way multiZ (ponAbe2) 8_WAY_MULTIZ_ponAbe2 ponAbe2,hg18,panTro2,rheMac2,calJac1,mm9,monDom4,ornAna1 /depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr10.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr10_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr11.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr11_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr12.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr12_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr13.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr13_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr14.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr14_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr15.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr15_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr16.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr16_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr17.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr17_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr18.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr18_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr19.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr19_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr1.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr1_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr20.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr20_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr21.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr21_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr22.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr22_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr2a.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr2a_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr2b.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr2b_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr3.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr3_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr4.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr4_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr5_h2_hap1.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr5.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr5_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_cox_hap1.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_cox_hap1_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_qbl_hap2.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_qbl_hap2_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr7.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr7_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr8.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr8_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr9.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr9_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chrM.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chrUn.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chrX.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chrX_random.maf.lzo +#ENCODE TBA (hg17) ENCODE_TBA_hg17 armadillo,baboon,galGal2,panTro1,colobus_monkey,cow,canFam1,dusky_titi,elephant,fr1,galago,hedgehog,hg17,rheMac1,marmoset,monDom1,mm6,mouse_lemur,owl_monkey,platypus,rabbit,rn3,rfbat,shrew,tenrec,tetNig1,xenTro1,danRer2 armadillo,baboon,galGal2,panTro1,colobus_monkey,cow,canFam1,dusky_titi,elephant,fr1,galago,hedgehog,hg17,rheMac1,marmoset,monDom1,mm6,mouse_lemur,owl_monkey,platypus,rabbit,rn3,rfbat,shrew,tenrec,tetNig1,xenTro1,danRer2 /depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm001/human.ENm001.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm002/human.ENm002.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm003/human.ENm003.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm004/human.ENm004.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm005/human.ENm005.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm006/human.ENm006.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm007/human.ENm007.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm008/human.ENm008.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm009/human.ENm009.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm010/human.ENm010.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm011/human.ENm011.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm012/human.ENm012.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm013/human.ENm013.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENm014/human.ENm014.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr111/human.ENr111.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr112/human.ENr112.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr113/human.ENr113.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr114/human.ENr114.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr121/human.ENr121.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr122/human.ENr122.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr123/human.ENr123.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr131/human.ENr131.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr132/human.ENr132.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr133/human.ENr133.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr211/human.ENr211.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr212/human.ENr212.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr213/human.ENr213.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr221/human.ENr221.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr222/human.ENr222.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr223/human.ENr223.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr231/human.ENr231.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr232/human.ENr232.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr233/human.ENr233.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr311/human.ENr311.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr312/human.ENr312.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr313/human.ENr313.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr321/human.ENr321.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr322/human.ENr322.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr323/human.ENr323.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr324/human.ENr324.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr331/human.ENr331.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr332/human.ENr332.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr333/human.ENr333.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/tba/ENr334/human.ENr334.maf +#ENCODE MAVID (hg17) ENCODE_MAVID_hg17 armadillo,baboon,galGal2,panTro1,colobus_monkey,cow,canFam1,dusky_titi,elephant,fr1,galago,hedgehog,hg17,rheMac1,marmoset,monDom1,mm6,mouse_lemur,owl_monkey,platypus,rabbit,rn3,rfbat,shrew,tenrec,tetNig1,xenTro1,danRer2 armadillo,baboon,galGal2,panTro1,colobus_monkey,cow,canFam1,dusky_titi,elephant,fr1,galago,hedgehog,hg17,rheMac1,marmoset,monDom1,mm6,mouse_lemur,owl_monkey,platypus,rabbit,rn3,rfbat,shrew,tenrec,tetNig1,xenTro1,danRer2 /depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm001.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm002.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm003.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm004.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm005.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm006.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm007.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm008.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm009.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm010.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm011.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm012.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm013.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENm014.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr111.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr112.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr113.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr114.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr121.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr122.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr123.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr131.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr132.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr133.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr211.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr212.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr213.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr221.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr222.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr223.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr231.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr232.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr233.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr311.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr312.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr313.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr321.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr322.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr323.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr324.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr331.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr332.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr333.maf,/depot/data2/galaxy/hg17/align/encode_relabeled/mavid/abs/ENr334.maf +#ENCODE TBA (hg16) ENCODE_TBA_hg16 armadillo,baboon,galGal2,panTro1,colobus_monkey,cow,canFam1,dusky_titi,elephant=elephant,fr1,galago,hedgehog,hg16,rheMac1,marmoset,monDom1,mm6,mouse_lemur,owl_monkey,platypus,rabbit,rn3,rfbat,shrew,tenrec,tetNig1,xenTro1,danRer2 armadillo,baboon,galGal2,panTro1,colobus_monkey,cow,canFam1,dusky_titi,elephant=elephant,fr1,galago,hedgehog,hg16,rheMac1,marmoset,monDom1,mm6,mouse_lemur,owl_monkey,platypus,rabbit,rn3,rfbat,shrew,tenrec,tetNig1,xenTro1,danRer2 /depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm001.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm002.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm003.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm004.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm005.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm006.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm007.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm008.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm009.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm010.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm011.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm012.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm013.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENm014.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr111.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr112.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr113.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr114.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr121.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr122.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr123.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr131.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr132.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr133.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr211.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr212.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr213.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr221.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr222.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr223.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr231.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr232.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr233.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr311.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr312.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr313.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr321.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr322.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr323.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr324.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr331.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr332.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr333.maf,/depot/data2/galaxy/hg16/align/encode/june2005freeze/tba/human.ENr334.maf +#8-way multiZ (hg17) 8_WAY_MULTIZ_hg17 canFam1,danRer1,fr1,galGal2,hg17,mm5,panTro1,rn3 canFam1,danRer1,fr1,galGal2,hg17,mm5,panTro1,rn3 /depot/data2/galaxy/hg17/align/8way-multiZ/chr1.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr1_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr10.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr10_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr11.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr12.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr12_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr13.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr13_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr14.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr15.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr15_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr16.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr16_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr17.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr17_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr18.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr18_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr19.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr19_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr2.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr2_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr20.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr21.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr22.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr22_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr3.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr3_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr4.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr4_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr5.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr5_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr6.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr6_hla_hap1.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr6_hla_hap2.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr6_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr7.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr7_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr8.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr8_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr9.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chr9_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chrM.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chrX.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chrX_random.maf,/depot/data2/galaxy/hg17/align/8way-multiZ/chrY.maf +#17-way multiZ (hg18) 17_WAY_MULTIZ_hg18 hg18,panTro1,bosTau2,rheMac2,mm8,rn4,canFam2,echTel1,loxAfr1,oryCun1,danRer3,monDom4,dasNov1,galGal2,fr1,tetNig1,xenTro1 hg18,panTro1,bosTau2,rheMac2,mm8,rn4,canFam2,echTel1,loxAfr1,oryCun1,danRer3,monDom4,dasNov1,galGal2,fr1,tetNig1,xenTro1 /depot/data2/galaxy/hg18/align/17way-multiZ/chr10.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr10_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr11.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr11_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr12.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr13.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr13_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr14.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr15.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr15_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr16.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr16_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr17.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr17_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr18.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr18_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr19.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr19_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr1.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr1_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr20.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr21.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr21_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr22_h2_hap1.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr22.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr22_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr2.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr2_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr3.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr3_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr4.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr4_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr5_h2_hap1.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr5.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr5_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr6_cox_hap1.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr6.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr6_qbl_hap2.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr6_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr7.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr7_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr8.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr8_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr9.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chr9_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chrM.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chrX.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chrX_random.maf,/depot/data2/galaxy/hg18/align/17way-multiZ/chrY.maf +#3-way multiZ (hg18,panTro2,rheMac2) 3_WAY_MULTIZ_hg18 hg18,panTro2,rheMac2 hg18,panTro2,rheMac2 /depot/data2/galaxy/hg18/align/3way-multiZ/chr10.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr10_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr11.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr11_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr12.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr13.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr13_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr14.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr15.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr15_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr16.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr16_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr17.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr17_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr18.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr18_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr19.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr19_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr1.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr1_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr20.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr21.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr21_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr22_h2_hap1.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr22.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr22_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr2.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr2_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr3.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr3_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr4.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr4_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr5_h2_hap1.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr5.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr5_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr6_cox_hap1.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr6.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr6_qbl_hap2.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr6_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr7.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr7_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr8.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr8_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr9.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chr9_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chrM.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chrX.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chrX_random.maf,/depot/data2/galaxy/hg18/align/3way-multiZ/chrY.maf +#5-way multiZ (hg18,panTro2,rheMac2,mm8,canFam2) 5_WAY_MULTIZ_hg18 hg18,panTro2,rheMac2,mm8,canFam2 hg18,panTro2,rheMac2,mm8,canFam2 /depot/data2/galaxy/hg18/align/5way-multiZ/chr10.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr10_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr11.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr11_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr12.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr13.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr13_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr14.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr15.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr15_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr16.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr16_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr17.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr17_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr18.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr18_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr19.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr19_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr1.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr1_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr20.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr21.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr21_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr22_h2_hap1.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr22.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr22_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr2.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr2_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr3.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr3_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr4.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr4_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr5_h2_hap1.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr5.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr5_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr6_cox_hap1.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr6.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr6_qbl_hap2.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr6_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr7.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr7_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr8.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr8_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr9.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chr9_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chrM.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chrX.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chrX_random.maf,/depot/data2/galaxy/hg18/align/5way-multiZ/chrY.maf +#28-way multiZ (hg18) 28_WAY_MULTIZ_hg18 hg18 hg18,dasNov1,otoGar1,felCat3,galGal3,panTro2,bosTau3,canFam2,loxAfr1,xenTro2,fr2,cavPor2,eriEur1,equCab1,anoCar1,oryLat1,mm8,monDom4,ornAna1,oryCun1,rn4,rheMac2,sorAra1,gasAcu1,echTel1,tetNig1,tupBel1,danRer4 /depot/data2/galaxy/hg18/align/multiz28way/chr1.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr10.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr10_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr11.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr11_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr12.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr13.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr13_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr14.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr15.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr15_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr16.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr16_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr17.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr17_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr18.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr18_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr19.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr19_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr1_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr2.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr20.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr21.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr21_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr22.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr22_h2_hap1.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr22_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr2_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr3.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr3_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr4.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr4_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr5.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr5_h2_hap1.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr5_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr6.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr6_cox_hap1.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr6_qbl_hap2.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr6_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr7.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr7_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr8.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr8_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr9.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chr9_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chrM.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chrX.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chrX_random.maf.lzo,/depot/data2/galaxy/hg18/align/multiz28way/chrY.maf.lzo +#15-way multiZ (dm2) 15_WAY_MULTIZ_dm2 dm2,droSim1,droSec1,droYak2,droEre2,droAna3,dp4,droPer1,droWil1,droVir3,droMoj3,droGri2,anoGam1,apiMel2,triCas2 dm2,droSim1,droSec1,droYak2,droEre2,droAna3,dp4,droPer1,droWil1,droVir3,droMoj3,droGri2,anoGam1,apiMel2,triCas2 /depot/data2/galaxy/dm2/align/multiz15way/chr2L.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr2R.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr2h.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr3L.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr3R.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr3h.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr4.maf,/depot/data2/galaxy/dm2/align/multiz15way/chr4h.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrM.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrU.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrX.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrXh.maf,/depot/data2/galaxy/dm2/align/multiz15way/chrYh.maf +#17-way multiZ (mm8) 17_WAY_MULTIZ_mm8 mm8 hg18,panTro1,bosTau2,rheMac2,mm8,rn4,canFam2,echTel1,loxAfr1,oryCun1,danRer3,monDom4,dasNov1,galGal2,fr1,tetNig1,xenTro1 /depot/data2/galaxy/mm8/align/multiz17way/chr10.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr10_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr11.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr12.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr13.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr13_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr14.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr15.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr15_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr16.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr17.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr17_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr18.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr19.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr1.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr1_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr2.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr3.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr4.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr5.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr5_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr6.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr7.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr7_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr8.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr8_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr9.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chr9_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrM.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrUn_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrX.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrX_random.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrY.maf.lzo,/depot/data2/galaxy/mm8/align/multiz17way/chrY_random.maf.lzo +#8-way multiZ (ponAbe2) 8_WAY_MULTIZ_ponAbe2 ponAbe2,hg18,panTro2,rheMac2,calJac1,mm9,monDom4,ornAna1 ponAbe2,hg18,panTro2,rheMac2,calJac1,mm9,monDom4,ornAna1 /depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr10.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr10_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr11.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr11_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr12.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr12_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr13.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr13_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr14.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr14_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr15.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr15_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr16.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr16_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr17.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr17_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr18.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr18_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr19.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr19_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr1.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr1_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr20.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr20_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr21.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr21_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr22.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr22_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr2a.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr2a_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr2b.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr2b_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr3.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr3_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr4.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr4_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr5_h2_hap1.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr5.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr5_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_cox_hap1.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_cox_hap1_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_qbl_hap2.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_qbl_hap2_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr6_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr7.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr7_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr8.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr8_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr9.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chr9_random.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chrM.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chrUn.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chrX.maf.lzo,/depot/data2/galaxy/ponAbe2/align/multiz8way/maf/chrX_random.maf.lzo diff --git a/tool-data/maf_pairwise.loc.sample b/tool-data/maf_pairwise.loc.sample index e82f09e76ba..7a2d301606c 100644 --- a/tool-data/maf_pairwise.loc.sample +++ b/tool-data/maf_pairwise.loc.sample @@ -2,30 +2,30 @@ #alignment tools. The maf_pairwise.loc file has this format (white #space characters are TAB characters): # -# +# # -#Pairwise (anoGam1,dm2) PAIRWISE_anoGam1_dm2 anoGam1,dm2 /depot/data2/galaxy/anoGam1/align/dm2/maf/chr2L.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chr2R.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chr3L.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chr3R.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chrM.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chrU.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chrX.maf -#Pairwise (canFam1,hg17) PAIRWISE_canFam1_hg17 canFam1,hg17 /depot/data2/galaxy/canFam1/align/hg17/maf/chr1.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr10.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr11.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr12.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr13.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr14.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr15.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr16.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr17.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr18.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr19.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr2.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr20.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr21.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr22.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr23.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr24.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr25.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr26.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr27.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr28.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr29.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr3.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr30.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr31.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr32.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr33.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr34.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr35.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr36.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr37.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr38.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr4.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr5.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr6.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr7.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr8.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr9.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chrM.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chrUn.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chrX.maf -#Pairwise (canFam1,mm6) PAIRWISE_canFam1_mm6 canFam1,mm6 /depot/data2/galaxy/canFam1/align/mm6/maf/chr1.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr10.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr11.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr12.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr13.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr14.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr15.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr16.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr17.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr18.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr19.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr2.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr20.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr21.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr22.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr23.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr24.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr25.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr26.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr27.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr28.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr29.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr3.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr30.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr31.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr32.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr33.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr34.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr35.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr36.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr37.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr38.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr4.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr5.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr6.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr7.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr8.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr9.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chrM.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chrUn.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chrX.maf -#Pairwise (canFam2,canFam2) PAIRWISE_canFam2_canFam2 canFam2,canFam2 /depot/data2/galaxy/canFam2/align/canFam2/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chrX.maf -#Pairwise (canFam2,hg17) PAIRWISE_canFam2_hg17 canFam2,hg17 /depot/data2/galaxy/canFam2/align/hg17/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chrX.maf -#Pairwise (canFam2,hg18) PAIRWISE_canFam2_hg18 canFam2,hg18 /depot/data2/galaxy/canFam2/align/hg18/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chrX.maf -#Pairwise (canFam2,mm6) PAIRWISE_canFam2_mm6 canFam2,mm6 /depot/data2/galaxy/canFam2/align/mm6/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chrX.maf -#Pairwise (canFam2,mm7) PAIRWISE_canFam2_mm7 canFam2,mm7 /depot/data2/galaxy/canFam2/align/mm7/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chrX.maf -#Pairwise (canFam2,mm8) PAIRWISE_canFam2_mm8 canFam2,mm8 /depot/data2/galaxy/canFam2/align/mm8/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chrX.maf -#Pairwise (canFam2,rn3) PAIRWISE_canFam2_rn3 canFam2,rn3 /depot/data2/galaxy/canFam2/align/rn3/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chrX.maf -#Pairwise (canFam2,rn4) PAIRWISE_canFam2_rn4 canFam2,rn4 /depot/data2/galaxy/canFam2/align/rn4/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chrX.maf -#Pairwise (danRer2,fr1) PAIRWISE_danRer2_fr1 danRer2,fr1 /depot/data2/galaxy/danRer2/align/fr1/maf/chr1.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr10.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr11.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr12.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr13.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr14.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr15.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr16.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr17.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr18.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr19.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr2.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr20.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr21.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr22.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr23.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr24.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr25.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr3.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr4.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr5.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr6.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr7.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr8.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr9.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chrM.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chrNA.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chrUn.maf -#Pairwise (danRer2,hg17) PAIRWISE_danRer2_hg17 danRer2,hg17 /depot/data2/galaxy/danRer2/align/hg17/maf/chr1.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr10.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr11.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr12.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr13.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr14.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr15.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr16.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr17.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr18.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr19.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr2.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr20.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr21.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr22.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr23.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr24.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr25.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr3.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr4.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr5.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr6.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr7.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr8.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr9.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chrM.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chrNA.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chrUn.maf -#Pairwise (danRer2,mm6) PAIRWISE_danRer2_mm6 danRer2,mm6 /depot/data2/galaxy/danRer2/align/mm6/maf/chr1.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr10.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr11.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr12.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr13.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr14.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr15.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr16.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr17.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr18.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr19.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr2.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr20.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr21.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr22.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr23.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr24.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr25.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr3.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr4.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr5.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr6.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr7.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr8.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr9.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chrM.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chrNA.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chrUn.maf -#Pairwise (danRer2,tetNig1) PAIRWISE_danRer2_tetNig1 danRer2,tetNig1 /depot/data2/galaxy/danRer2/align/tetNig1/maf/chr1.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr10.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr11.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr12.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr13.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr14.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr15.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr16.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr17.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr18.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr19.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr2.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr20.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr21.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr22.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr23.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr24.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr25.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr3.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr4.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr5.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr6.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr7.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr8.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr9.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chrM.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chrNA.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chrUn.maf -#Pairwise (danRer3,fr1) PAIRWISE_danRer3_fr1 danRer3,fr1 /depot/data2/galaxy/danRer3/align/fr1/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chrM.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chrNA.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chrUn.maf -#Pairwise (danRer3,hg18) PAIRWISE_danRer3_hg18 danRer3,hg18 /depot/data2/galaxy/danRer3/align/hg18/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chrM.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chrNA.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chrUn.maf -#Pairwise (danRer3,mm7) PAIRWISE_danRer3_mm7 danRer3,mm7 /depot/data2/galaxy/danRer3/align/mm7/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chrM.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chrNA.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chrUn.maf -#Pairwise (danRer3,mm8) PAIRWISE_danRer3_mm8 danRer3,mm8 /depot/data2/galaxy/danRer3/align/mm8/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chrM.maf -#Pairwise (danRer3,tetNig1) PAIRWISE_danRer3_tetNig1 danRer3,tetNig1 /depot/data2/galaxy/danRer3/align/tetNig1/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chrM.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chrNA.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chrUn.maf -#Pairwise (danRer4,fr1) PAIRWISE_danRer4_fr1 danRer4,fr1 /depot/data2/galaxy/danRer4/align/fr1/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chrUn_random.maf -#Pairwise (danRer4,hg18) PAIRWISE_danRer4_hg18 danRer4,hg18 /depot/data2/galaxy/danRer4/align/hg18/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chrUn_random.maf -#Pairwise (danRer4,mm8) PAIRWISE_danRer4_mm8 danRer4,mm8 /depot/data2/galaxy/danRer4/align/mm8/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chrUn_random.maf -#Pairwise (danRer4,rn4) PAIRWISE_danRer4_rn4 danRer4,rn4 /depot/data2/galaxy/danRer4/align/rn4/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chrUn_random.maf -#Pairwise (danRer4,tetNig1) PAIRWISE_danRer4_tetNig1 danRer4,tetNig1 /depot/data2/galaxy/danRer4/align/tetNig1/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chrUn_random.maf +#Pairwise (anoGam1,dm2) PAIRWISE_anoGam1_dm2 anoGam1,dm2 anoGam1,dm2 /depot/data2/galaxy/anoGam1/align/dm2/maf/chr2L.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chr2R.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chr3L.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chr3R.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chrM.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chrU.maf,/depot/data2/galaxy/anoGam1/align/dm2/maf/chrX.maf +#Pairwise (canFam1,hg17) PAIRWISE_canFam1_hg17 canFam1,hg17 canFam1,hg17 /depot/data2/galaxy/canFam1/align/hg17/maf/chr1.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr10.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr11.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr12.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr13.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr14.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr15.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr16.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr17.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr18.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr19.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr2.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr20.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr21.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr22.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr23.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr24.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr25.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr26.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr27.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr28.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr29.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr3.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr30.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr31.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr32.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr33.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr34.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr35.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr36.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr37.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr38.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr4.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr5.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr6.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr7.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr8.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chr9.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chrM.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chrUn.maf,/depot/data2/galaxy/canFam1/align/hg17/maf/chrX.maf +#Pairwise (canFam1,mm6) PAIRWISE_canFam1_mm6 canFam1,mm6 canFam1,mm6 /depot/data2/galaxy/canFam1/align/mm6/maf/chr1.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr10.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr11.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr12.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr13.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr14.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr15.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr16.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr17.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr18.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr19.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr2.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr20.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr21.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr22.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr23.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr24.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr25.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr26.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr27.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr28.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr29.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr3.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr30.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr31.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr32.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr33.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr34.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr35.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr36.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr37.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr38.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr4.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr5.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr6.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr7.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr8.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chr9.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chrM.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chrUn.maf,/depot/data2/galaxy/canFam1/align/mm6/maf/chrX.maf +#Pairwise (canFam2,canFam2) PAIRWISE_canFam2_canFam2 canFam2,canFam2 canFam2,canFam2 /depot/data2/galaxy/canFam2/align/canFam2/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/canFam2/maf/chrX.maf +#Pairwise (canFam2,hg17) PAIRWISE_canFam2_hg17 canFam2,hg17 canFam2,hg17 /depot/data2/galaxy/canFam2/align/hg17/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/hg17/maf/chrX.maf +#Pairwise (canFam2,hg18) PAIRWISE_canFam2_hg18 canFam2,hg18 canFam2,hg18 /depot/data2/galaxy/canFam2/align/hg18/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/hg18/maf/chrX.maf +#Pairwise (canFam2,mm6) PAIRWISE_canFam2_mm6 canFam2,mm6 canFam2,mm6 /depot/data2/galaxy/canFam2/align/mm6/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/mm6/maf/chrX.maf +#Pairwise (canFam2,mm7) PAIRWISE_canFam2_mm7 canFam2,mm7 canFam2,mm7 /depot/data2/galaxy/canFam2/align/mm7/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/mm7/maf/chrX.maf +#Pairwise (canFam2,mm8) PAIRWISE_canFam2_mm8 canFam2,mm8 canFam2,mm8 /depot/data2/galaxy/canFam2/align/mm8/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/mm8/maf/chrX.maf +#Pairwise (canFam2,rn3) PAIRWISE_canFam2_rn3 canFam2,rn3 canFam2,rn3 /depot/data2/galaxy/canFam2/align/rn3/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/rn3/maf/chrX.maf +#Pairwise (canFam2,rn4) PAIRWISE_canFam2_rn4 canFam2,rn4 canFam2,rn4 /depot/data2/galaxy/canFam2/align/rn4/maf/chr1.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr10.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr11.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr12.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr13.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr14.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr15.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr16.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr17.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr18.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr19.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr2.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr20.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr21.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr22.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr23.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr24.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr25.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr26.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr27.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr28.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr29.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr3.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr30.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr31.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr32.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr33.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr34.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr35.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr36.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr37.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr38.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr4.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr5.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr6.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr7.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr8.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chr9.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chrM.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chrUn.maf,/depot/data2/galaxy/canFam2/align/rn4/maf/chrX.maf +#Pairwise (danRer2,fr1) PAIRWISE_danRer2_fr1 danRer2,fr1 danRer2,fr1 /depot/data2/galaxy/danRer2/align/fr1/maf/chr1.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr10.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr11.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr12.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr13.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr14.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr15.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr16.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr17.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr18.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr19.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr2.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr20.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr21.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr22.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr23.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr24.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr25.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr3.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr4.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr5.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr6.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr7.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr8.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chr9.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chrM.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chrNA.maf,/depot/data2/galaxy/danRer2/align/fr1/maf/chrUn.maf +#Pairwise (danRer2,hg17) PAIRWISE_danRer2_hg17 danRer2,hg17 danRer2,hg17 /depot/data2/galaxy/danRer2/align/hg17/maf/chr1.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr10.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr11.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr12.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr13.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr14.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr15.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr16.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr17.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr18.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr19.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr2.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr20.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr21.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr22.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr23.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr24.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr25.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr3.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr4.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr5.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr6.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr7.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr8.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chr9.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chrM.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chrNA.maf,/depot/data2/galaxy/danRer2/align/hg17/maf/chrUn.maf +#Pairwise (danRer2,mm6) PAIRWISE_danRer2_mm6 danRer2,mm6 danRer2,mm6 /depot/data2/galaxy/danRer2/align/mm6/maf/chr1.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr10.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr11.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr12.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr13.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr14.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr15.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr16.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr17.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr18.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr19.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr2.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr20.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr21.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr22.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr23.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr24.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr25.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr3.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr4.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr5.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr6.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr7.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr8.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chr9.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chrM.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chrNA.maf,/depot/data2/galaxy/danRer2/align/mm6/maf/chrUn.maf +#Pairwise (danRer2,tetNig1) PAIRWISE_danRer2_tetNig1 danRer2,tetNig1 danRer2,tetNig1 /depot/data2/galaxy/danRer2/align/tetNig1/maf/chr1.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr10.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr11.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr12.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr13.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr14.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr15.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr16.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr17.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr18.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr19.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr2.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr20.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr21.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr22.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr23.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr24.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr25.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr3.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr4.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr5.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr6.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr7.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr8.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chr9.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chrM.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chrNA.maf,/depot/data2/galaxy/danRer2/align/tetNig1/maf/chrUn.maf +#Pairwise (danRer3,fr1) PAIRWISE_danRer3_fr1 danRer3,fr1 danRer3,fr1 /depot/data2/galaxy/danRer3/align/fr1/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chrM.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chrNA.maf,/depot/data2/galaxy/danRer3/align/fr1/maf/chrUn.maf +#Pairwise (danRer3,hg18) PAIRWISE_danRer3_hg18 danRer3,hg18 danRer3,hg18 /depot/data2/galaxy/danRer3/align/hg18/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chrM.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chrNA.maf,/depot/data2/galaxy/danRer3/align/hg18/maf/chrUn.maf +#Pairwise (danRer3,mm7) PAIRWISE_danRer3_mm7 danRer3,mm7 danRer3,mm7 /depot/data2/galaxy/danRer3/align/mm7/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chrM.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chrNA.maf,/depot/data2/galaxy/danRer3/align/mm7/maf/chrUn.maf +#Pairwise (danRer3,mm8) PAIRWISE_danRer3_mm8 danRer3,mm8 danRer3,mm8 /depot/data2/galaxy/danRer3/align/mm8/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/mm8/maf/chrM.maf +#Pairwise (danRer3,tetNig1) PAIRWISE_danRer3_tetNig1 danRer3,tetNig1 danRer3,tetNig1 /depot/data2/galaxy/danRer3/align/tetNig1/maf/chr1.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr10.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr11.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr12.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr13.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr14.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr15.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr16.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr17.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr18.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr19.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr2.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr20.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr21.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr22.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr23.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr24.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr25.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr3.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr4.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr5.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr6.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr7.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr8.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chr9.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chrM.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chrNA.maf,/depot/data2/galaxy/danRer3/align/tetNig1/maf/chrUn.maf +#Pairwise (danRer4,fr1) PAIRWISE_danRer4_fr1 danRer4,fr1 danRer4,fr1 /depot/data2/galaxy/danRer4/align/fr1/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/fr1/maf/chrUn_random.maf +#Pairwise (danRer4,hg18) PAIRWISE_danRer4_hg18 danRer4,hg18 danRer4,hg18 /depot/data2/galaxy/danRer4/align/hg18/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/hg18/maf/chrUn_random.maf +#Pairwise (danRer4,mm8) PAIRWISE_danRer4_mm8 danRer4,mm8 danRer4,mm8 /depot/data2/galaxy/danRer4/align/mm8/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/mm8/maf/chrUn_random.maf +#Pairwise (danRer4,rn4) PAIRWISE_danRer4_rn4 danRer4,rn4 danRer4,rn4 /depot/data2/galaxy/danRer4/align/rn4/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/rn4/maf/chrUn_random.maf +#Pairwise (danRer4,tetNig1) PAIRWISE_danRer4_tetNig1 danRer4,tetNig1 danRer4,tetNig1 /depot/data2/galaxy/danRer4/align/tetNig1/maf/chr1.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr10.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr11.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr12.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr13.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr14.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr15.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr16.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr17.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr18.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr19.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr2.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr20.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr21.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr22.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr23.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr24.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr25.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr3.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr4.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr5.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr6.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr7.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr8.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chr9.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chrM.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chrNA_random.maf,/depot/data2/galaxy/danRer4/align/tetNig1/maf/chrUn_random.maf diff --git a/tools/data_source/encode_import_all_latest_datasets.xml b/tools/data_source/encode_import_all_latest_datasets.xml index de98c97a784..171e55772f9 100644 --- a/tools/data_source/encode_import_all_latest_datasets.xml +++ b/tools/data_source/encode_import_all_latest_datasets.xml @@ -7,14 +7,24 @@ - - + + + + + + + - - + + + + + + + diff --git a/tools/data_source/encode_import_chromatin_and_chromosomes.xml b/tools/data_source/encode_import_chromatin_and_chromosomes.xml index f56716267ef..94967155997 100644 --- a/tools/data_source/encode_import_chromatin_and_chromosomes.xml +++ b/tools/data_source/encode_import_chromatin_and_chromosomes.xml @@ -7,14 +7,24 @@ - - + + + + + + + - - + + + + + + + diff --git a/tools/data_source/encode_import_gencode.xml b/tools/data_source/encode_import_gencode.xml index eb36aa180d6..e95792fd7c3 100644 --- a/tools/data_source/encode_import_gencode.xml +++ b/tools/data_source/encode_import_gencode.xml @@ -7,14 +7,24 @@ - - + + + + + + + - - + + + + + + + diff --git a/tools/data_source/encode_import_genes_and_transcripts.xml b/tools/data_source/encode_import_genes_and_transcripts.xml index 10938f15ce2..ec3c338a734 100644 --- a/tools/data_source/encode_import_genes_and_transcripts.xml +++ b/tools/data_source/encode_import_genes_and_transcripts.xml @@ -7,14 +7,24 @@ - - + + + + + + + - - + + + + + + + diff --git a/tools/data_source/encode_import_multi-species_sequence_analysis.xml b/tools/data_source/encode_import_multi-species_sequence_analysis.xml index 5f76e3a6e5c..dd396fb0c2f 100644 --- a/tools/data_source/encode_import_multi-species_sequence_analysis.xml +++ b/tools/data_source/encode_import_multi-species_sequence_analysis.xml @@ -7,14 +7,24 @@ - - + + + + + + + - - + + + + + + + diff --git a/tools/data_source/encode_import_transcription_regulation.xml b/tools/data_source/encode_import_transcription_regulation.xml index 16ffda64cc1..604040e2cd7 100644 --- a/tools/data_source/encode_import_transcription_regulation.xml +++ b/tools/data_source/encode_import_transcription_regulation.xml @@ -7,14 +7,24 @@ - - + + + + + + + - - + + + + + + + diff --git a/tools/data_source/microbial_import.xml b/tools/data_source/microbial_import.xml index 469d19bc018..0b578d0690c 100644 --- a/tools/data_source/microbial_import.xml +++ b/tools/data_source/microbial_import.xml @@ -1,84 +1,84 @@ microbial_import.py $CDS,$tRNA,$rRNA,$sequence,$GeneMark,$GeneMarkHMM,$Glimmer3 $output ${GALAXY_DATA_INDEX_DIR}/microbial_data.loc - - -

Select the Desired Kingdom
$kingdom

-
- - - -
- - -

Select the Desired Organism
$org

-
- - - + + + + + -
- - -

Select Desired Coding Sequences
$CDS

-

Select Desired tRNA
$tRNA

-

Select Desired rRNA
$rRNA

-

Select Desired DNA Sequences
$sequence

-

Select Desired GeneMark Annotations
$GeneMark

-

Select Desired GeneMarkHMM Annotations
$GeneMarkHMM

-

Select Desired Glimmer3 Annotations
$Glimmer3

-
- - - - - + + + + + + - - - - - + + + + + + + - - - - - + + + + + + + - - - - - + + + + + + + - - - - - + + + + + + + - - - - - + + + + + + + - - - - - + + + + + + + + + + + + + + + + -
diff --git a/tools/data_source/upload.xml b/tools/data_source/upload.xml index d0cbf007c86..6e65d9983a4 100644 --- a/tools/data_source/upload.xml +++ b/tools/data_source/upload.xml @@ -12,7 +12,12 @@ - + + + + + + @@ -20,7 +25,7 @@ **Auto-detect** -The system will attempt to detect AXT, BED, FASTA, Gff, Gff3, Interval (BED with headers), LAV, Maf, Tabular and Wiggle formats. If your file is not detected properly as one of the known formats, it most likely means that it has some format problems (e.g., different number of columns on different rows). You can still coerce the system to set your data to the format you think it should be (please send us a note if you see a case when a valid format is not detected). You can also upload valid files that are compressed (gzipped), which will automatically be decompressed upon upload. +The system will attempt to detect AXT, FASTA, Gff, HTML, LAV, Maf, Tabular, Wiggle, BED and Interval (BED with headers) formats. If your file is not detected properly as one of the known formats, it most likely means that it has some format problems (e.g., different number of columns on different rows). You can still coerce the system to set your data to the format you think it should be (please send us a note if you see a case when a valid format is not detected). You can also upload valid files that are compressed (gzipped), which will automatically be decompressed upon upload. ----- @@ -36,6 +41,12 @@ blastz pairwise alignment format. Each alignment block in an axt file contains ----- +**Binseq.zip** + +A zipped archive consisting of binary sequence files in either 'ab1' or 'scf' format. All files in this archive must have the same file extension which is one of '.ab1' or '.scf'. You must manually select this 'File Format' when uploading the file. + +----- + **BED** * Tab delimited format (tabular) @@ -65,12 +76,6 @@ blastz pairwise alignment format. Each alignment block in an axt file contains ----- -**Binseq.zip** - -A zipped archive consisting of binary sequence files in either 'ab1' or 'scf' format. All files in this archive must have the same file extension which is one of '.ab1' or '.scf'. You must manually select this 'File Format' when uploading the file. - ------ - **FASTA** A sequence in FASTA format consists of a single-line description, followed by lines of sequence data. The first character of the description line is a greater-than (">") symbol in the first column. All lines should be shorter than 80 charcters:: @@ -84,25 +89,6 @@ A sequence in FASTA format consists of a single-line description, followed by li ----- -**FASTQ** - -FASTQ format stores sequences and Phred qualities in a single file. FASTQ is first widely used in the Sanger Institute and therefore we usually take the Sanger specification and the standard FASTQ format, or simply FASTQ format. You must manually select this 'File Format' when uploading the file:: - - @EAS54_6_R1_2_1_413_324 - CCCTTCTTGTCTTCAGCGTTTCTCC - + - ;;3;;;;;;;;;;;;7;;;;;;;88 - @EAS54_6_R1_2_1_540_792 - TTGGCAGGCCAAGGCCGATGGATCA - + - ;;;;;;;;;;;7;;;;;-;;;3;83 - @EAS54_6_R1_2_1_443_348 - GTTGCTTCTGGCGTGGGTGGGGGGG - +EAS54_6_R1_2_1_443_348 - ;;;;;;;;;;;9;7;;.7;393333 - ------ - **Gff** GFF lines have nine required fields that must be tab-separated. @@ -147,20 +133,6 @@ TBA and multiz multiple alignment format. The first line of a .maf file begins ----- -**Qual** - -The qual sequence format is a FASTA-like format which stores numerical quality values for each nucleotide or amino acid. It is used by CAP3 and Phrap. You must manually select this 'File Format' when uploading the file:: - - >HSMETOO 134bp - 10 20 30 40 50 50 50 50 50 20 25 25 30 30 20 15 20 35 50 50 50 50 50 50 - 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 - 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 - 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 - 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 - 50 50 50 20 30 20 10 10 - ------ - **Scf** A binary sequence file in 'scf' format with a '.scf' file extension. You must manually select this 'File Format' when uploading the file. @@ -173,18 +145,6 @@ Any data in tab delimited format (tabular) ----- -**Taxonomy** - -Tabular data containing at least 24 columns. You must manually select this 'File Format' when uploading the file. - ------ - -**Txt** - -Any text file. - ------ - **Txtseq.zip** A zipped archive consisting of flat text sequence files. All files in this archive must have the same file extension of '.txt'. You must manually select this 'File Format' when uploading the file. @@ -195,6 +155,11 @@ A zipped archive consisting of flat text sequence files. All files in this arch The wiggle format is line-oriented. Wiggle data is preceeded by a track definition line, which adds a number of options for controlling the default display of this track. +----- + +**Other text type** + +Any text file
diff --git a/tools/encode/random_intervals.xml b/tools/encode/random_intervals.xml index 100bf9412aa..f3a383b6bc8 100644 --- a/tools/encode/random_intervals.xml +++ b/tools/encode/random_intervals.xml @@ -16,8 +16,11 @@ - - + + + + + diff --git a/tools/extract/extract_GFF_Features.xml b/tools/extract/extract_GFF_Features.xml index df996d6f6b5..d647d7a2b68 100644 --- a/tools/extract/extract_GFF_Features.xml +++ b/tools/extract/extract_GFF_Features.xml @@ -13,36 +13,46 @@ - - + + + + - - + + + + - - + + + + - - + + + + - - + + + + diff --git a/tools/extract/liftOver_wrapper.xml b/tools/extract/liftOver_wrapper.xml index 4ade57b4e89..3e5c91d7746 100644 --- a/tools/extract/liftOver_wrapper.xml +++ b/tools/extract/liftOver_wrapper.xml @@ -6,8 +6,11 @@ - - + + + + + diff --git a/tools/extract/phastOdds/phastOdds_tool.xml b/tools/extract/phastOdds/phastOdds_tool.xml index 4eb15200d80..40e0de0a368 100644 --- a/tools/extract/phastOdds/phastOdds_tool.xml +++ b/tools/extract/phastOdds/phastOdds_tool.xml @@ -6,10 +6,13 @@ - - + + + + + - + diff --git a/tools/filters/axt_to_concat_fasta.xml b/tools/filters/axt_to_concat_fasta.xml index d365cd82339..bd8f58270ac 100644 --- a/tools/filters/axt_to_concat_fasta.xml +++ b/tools/filters/axt_to_concat_fasta.xml @@ -4,10 +4,16 @@ - + + + + - + + + + diff --git a/tools/filters/axt_to_fasta.xml b/tools/filters/axt_to_fasta.xml index 0d87062664f..0031daf43f3 100644 --- a/tools/filters/axt_to_fasta.xml +++ b/tools/filters/axt_to_fasta.xml @@ -4,10 +4,16 @@ - + + + + - + + + + diff --git a/tools/filters/axt_to_lav.xml b/tools/filters/axt_to_lav.xml index 950e7d89aad..12521b241ea 100644 --- a/tools/filters/axt_to_lav.xml +++ b/tools/filters/axt_to_lav.xml @@ -4,10 +4,16 @@ - + + + + - + + + + diff --git a/tools/maf/genebed_maf_to_fasta.xml b/tools/maf/genebed_maf_to_fasta.xml index 82dd90a5a4f..22293b89ce9 100644 --- a/tools/maf/genebed_maf_to_fasta.xml +++ b/tools/maf/genebed_maf_to_fasta.xml @@ -16,25 +16,34 @@ + + + - - + - - - + + + + + + + - - + + + + + diff --git a/tools/maf/interval2maf.xml b/tools/maf/interval2maf.xml index 8e6409fe6f2..a629d14b5aa 100644 --- a/tools/maf/interval2maf.xml +++ b/tools/maf/interval2maf.xml @@ -16,14 +16,21 @@ + + + - + + + + + + - diff --git a/tools/maf/interval2maf_pairwise.xml b/tools/maf/interval2maf_pairwise.xml index aea30d4d9e0..5b00956afc6 100644 --- a/tools/maf/interval2maf_pairwise.xml +++ b/tools/maf/interval2maf_pairwise.xml @@ -6,9 +6,13 @@ - + + + + + + - diff --git a/tools/maf/interval_maf_to_merged_fasta.xml b/tools/maf/interval_maf_to_merged_fasta.xml index 3337ba3466d..4d10bc5de52 100644 --- a/tools/maf/interval_maf_to_merged_fasta.xml +++ b/tools/maf/interval_maf_to_merged_fasta.xml @@ -16,26 +16,35 @@ + + + - - + - - - + + + + + + + - - + + + + + diff --git a/tools/maf/maf_filter.xml b/tools/maf/maf_filter.xml index 132134e5a5d..70e4e88c8d8 100644 --- a/tools/maf/maf_filter.xml +++ b/tools/maf/maf_filter.xml @@ -7,7 +7,7 @@ - + @@ -27,7 +27,7 @@ - + @@ -64,7 +64,7 @@ - + diff --git a/tools/maf/maf_limit_to_species.xml b/tools/maf/maf_limit_to_species.xml index 1d7b8b502b2..6b10517c024 100644 --- a/tools/maf/maf_limit_to_species.xml +++ b/tools/maf/maf_limit_to_species.xml @@ -13,7 +13,7 @@ - + diff --git a/tools/maf/maf_stats.xml b/tools/maf/maf_stats.xml index 1b74b57c5ae..1fadd8176de 100644 --- a/tools/maf/maf_stats.xml +++ b/tools/maf/maf_stats.xml @@ -20,14 +20,20 @@ + + + - + + + + + - diff --git a/tools/maf/maf_thread_for_species.xml b/tools/maf/maf_thread_for_species.xml index b0895be9a2a..a5bff427244 100644 --- a/tools/maf/maf_thread_for_species.xml +++ b/tools/maf/maf_thread_for_species.xml @@ -5,7 +5,7 @@ - + diff --git a/tools/maf/maf_to_bed.xml b/tools/maf/maf_to_bed.xml index e9b464dd6c7..d3eb35b112d 100644 --- a/tools/maf/maf_to_bed.xml +++ b/tools/maf/maf_to_bed.xml @@ -5,7 +5,7 @@ - + diff --git a/tools/maf/maf_to_fasta.xml b/tools/maf/maf_to_fasta.xml index 09af95e87c0..841ac024820 100644 --- a/tools/maf/maf_to_fasta.xml +++ b/tools/maf/maf_to_fasta.xml @@ -15,7 +15,7 @@ - + @@ -26,7 +26,7 @@ - + diff --git a/tools/metag_tools/megablast_wrapper.xml b/tools/metag_tools/megablast_wrapper.xml index 9517455f2be..6f94562af5f 100644 --- a/tools/metag_tools/megablast_wrapper.xml +++ b/tools/metag_tools/megablast_wrapper.xml @@ -3,7 +3,10 @@ megablast_wrapper.py $source_select $input_query $output1 $word_size $iden_cutoff $evalue_cutoff $filter_query ${GALAXY_DATA_INDEX_DIR} - + + + + diff --git a/tools/metag_tools/rmap_wrapper.xml b/tools/metag_tools/rmap_wrapper.xml index 08edab66500..da2bf8044eb 100644 --- a/tools/metag_tools/rmap_wrapper.xml +++ b/tools/metag_tools/rmap_wrapper.xml @@ -7,7 +7,10 @@ - + + + + diff --git a/tools/metag_tools/rmapq_wrapper.xml b/tools/metag_tools/rmapq_wrapper.xml index 0e11c53fc62..1447fa70259 100644 --- a/tools/metag_tools/rmapq_wrapper.xml +++ b/tools/metag_tools/rmapq_wrapper.xml @@ -7,7 +7,10 @@ - + + + + diff --git a/tools/regVariation/getIndels_3way.xml b/tools/regVariation/getIndels_3way.xml index 2f131d715dd..8bfa7b87191 100644 --- a/tools/regVariation/getIndels_3way.xml +++ b/tools/regVariation/getIndels_3way.xml @@ -8,7 +8,7 @@ - + diff --git a/tools/regVariation/quality_filter.xml b/tools/regVariation/quality_filter.xml index e1f617ef26b..524a9b15e62 100644 --- a/tools/regVariation/quality_filter.xml +++ b/tools/regVariation/quality_filter.xml @@ -22,12 +22,12 @@ - + - + diff --git a/tools/stats/aggregate_binned_scores_in_intervals.xml b/tools/stats/aggregate_binned_scores_in_intervals.xml index e0f940d15f6..491cde1225d 100644 --- a/tools/stats/aggregate_binned_scores_in_intervals.xml +++ b/tools/stats/aggregate_binned_scores_in_intervals.xml @@ -16,15 +16,18 @@ - - + + + + + - + diff --git a/tools/visualization/GMAJ.xml b/tools/visualization/GMAJ.xml index 5ee4b8a3ae4..1397dcd4c8e 100644 --- a/tools/visualization/GMAJ.xml +++ b/tools/visualization/GMAJ.xml @@ -6,7 +6,7 @@ - +