Languages
152 code results in galaxyproject/galaxy or view all results on GitHub
| 5 | <Alert v-else-if="loading" message="Waiting for data" variant="info" /> |
| 6 | <div v-else-if="dataManagers && !dataManagers.length"> |
| … | |
| 8 | <h4 class="alert-heading">None installed</h4> |
| 9 | You do not currently have any Data Managers installed. |
| 10 | </Alert> |
| 11 | </div> |
Vue
Showing the top five matches
Last indexed | 21 | from galaxy.tool_util.deps.views import DependencyResolversView |
| 22 | from galaxy.tool_util.verify import test_data |
| 23 | from galaxy.util.dbkeys import GenomeBuilds |
| 24 | from galaxy.web_stack import ApplicationStack |
| … | |
| 26 | from galaxy.workflow.trs_proxy import TrsProxy |
| 27 | |
| 28 | if TYPE_CHECKING: |
| 29 | from galaxy.tools.data import ToolDataTableManager |
Python
Showing the top two matches
Last indexed | 15 | VALUE_TRANSLATION_FUNCTIONS = dict(abspath=os.path.abspath) |
| 16 | DEFAULT_VALUE_TRANSLATION_TYPE = 'template' |
| 17 | |
| 18 | |
| 19 | class DataManagers: |
| 20 | data_managers: Dict[str, 'DataManager'] |
| … | |
| 23 | def __init__(self, app: MinimalManagerApp, xml_filename=None): |
| 24 | self.app = app |
| 25 | self.data_managers = {} |
| 26 | self.managed_data_tables = {} |
Python
Showing the top three matches
Last indexed | 79 | class DataManagersGalaxyTestDriver(driver_util.GalaxyTestDriver): |
| 80 | """Galaxy-style nose TestDriver for testing framework Galaxy tools.""" |
| … | |
| 83 | """Build data manager test methods.""" |
| 84 | import functional.test_data_managers |
| 85 | functional.test_data_managers.data_managers = self.app.data_managers |
Python
Showing the top four matches
Last indexed | 14 | log = logging.getLogger(__name__) |
| 15 | data_managers = None |
| 16 | |
| 17 | |
| 18 | class DataManagerToolTestCase(ToolTestCase): |
| … | |
| 23 | def build_tests(tmp_dir=None, testing_shed_tools=False, master_api_key=None, user_api_key=None, create_admin=False, user_email=None): |
| 24 | """ |
| 25 | If the module level variable `data_managers` is set, generate `DataManagerToolTestCase` |
Python
Showing the top three matches
Last indexed | 22 | self.datatypes = [] |
| 23 | self.folders = [] |
| 24 | self.invalid_data_managers = [] |
| 25 | self.invalid_repository_dependencies = [] |
| … | |
| 35 | self.valid_tools = [] |
| 36 | self.valid_data_managers = [] |
| 37 | self.workflows = [] |
| 38 | |
| 39 | def contains_folder(self, folder): |
Python
Showing the top two matches
Last indexed