From 104655263d98a0bdf69415a757807a0901ecf9ad Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Mon, 22 Sep 2025 17:52:05 +0100 Subject: [PATCH 01/38] SCKAN-443 feat: Add population_file param to ingest_statements; Update tests --- .../management/commands/ingest_statements.py | 22 ++- .../cs_ingestion/cs_ingestion_services.py | 6 +- .../helpers/overwritable_helper.py | 25 ++- .../backend/tests/test_ingest_statements.py | 159 ++++++++++++++++++ 4 files changed, 206 insertions(+), 6 deletions(-) diff --git a/applications/composer/backend/composer/management/commands/ingest_statements.py b/applications/composer/backend/composer/management/commands/ingest_statements.py index f4fb5cfd..3c1663a6 100644 --- a/applications/composer/backend/composer/management/commands/ingest_statements.py +++ b/applications/composer/backend/composer/management/commands/ingest_statements.py @@ -34,6 +34,11 @@ def add_arguments(self, parser): nargs='*', help='List of label imports to include in the ingestion.', ) + parser.add_argument( + '--population_file', + type=str, + help='Path to a text file containing population URIs (one per line) that should be updated regardless of their status.', + ) def handle(self, *args, **options): update_upstream = options['update_upstream'] @@ -41,10 +46,25 @@ def handle(self, *args, **options): disable_overwrite = options['disable_overwrite'] full_imports = options['full_imports'] label_imports = options['label_imports'] + population_file = options['population_file'] + + # Read population URIs from file if provided + population_uris = [] + if population_file: + try: + with open(population_file, 'r') as f: + population_uris = [line.strip() for line in f if line.strip()] + self.stdout.write(f"Loaded {len(population_uris)} population URIs from {population_file}") + except FileNotFoundError: + self.stderr.write(self.style.ERROR(f"Population file not found: {population_file}")) + return + except Exception as e: + self.stderr.write(self.style.ERROR(f"Error reading population file: {e}")) + return start_time = time.time() - ingest_statements(update_upstream, update_anatomical_entities, disable_overwrite, full_imports, label_imports) + ingest_statements(update_upstream, update_anatomical_entities, disable_overwrite, full_imports, label_imports, population_uris) end_time = time.time() diff --git a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py index d7462ee0..c7c3e0aa 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py +++ b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py @@ -28,8 +28,12 @@ def ingest_statements( disable_overwrite=False, full_imports=[], label_imports=[], + population_uris=None, ): + if population_uris is None: + population_uris = [] + statements_list = get_statements_from_neurondm( full_imports=full_imports, label_imports=label_imports, @@ -37,7 +41,7 @@ def ingest_statements( statement_alert_uris=set(AlertType.objects.values_list("uri", flat=True)), ) overridable_and_new_statements = get_overwritable_and_new_statements( - statements_list, disable_overwrite + statements_list, disable_overwrite, population_uris ) statements = validate_statements( overridable_and_new_statements, update_anatomical_entities diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py index 42dabd48..e07c31ff 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py @@ -10,10 +10,13 @@ logger_service = LoggerService() -def get_overwritable_and_new_statements(statements_list: List[Dict[str, Any]], disable_overwrite: bool=False) -> List[Dict[str, Any]]: +def get_overwritable_and_new_statements(statements_list: List[Dict[str, Any]], disable_overwrite: bool=False, population_uris: List[str]=None) -> List[Dict[str, Any]]: + if population_uris is None: + population_uris = [] + overwritable_and_new_statements = [ statement for statement in statements_list - if is_new_or_overwritable_statement(statement, disable_overwrite) + if is_new_or_overwritable_statement(statement, disable_overwrite, population_uris) ] return overwritable_and_new_statements @@ -31,16 +34,30 @@ def is_new_or_overwritable_sentence(statement: Dict, disable_overwrite: bool) -> return can_sentence_be_overwritten(sentence, statement) -def is_new_or_overwritable_statement(statement: Dict, disable_overwrite: bool) -> bool: +def is_new_or_overwritable_statement(statement: Dict, disable_overwrite: bool, population_uris: List[str]=None) -> bool: """ If disable_overwrite is True, then the statement is considered invalid for overwriting - if it already exists in the database. + However, statements with URIs in population_uris should be updatable regardless of their status (unless disable_overwrite is True). """ + if population_uris is None: + population_uris = [] + + statement_uri = statement[ID] + try: - connectivity_statement = ConnectivityStatement.objects.get(reference_uri=statement[ID]) + connectivity_statement = ConnectivityStatement.objects.get(reference_uri=statement_uri) + + # If disable_overwrite is True, then no overwrites should happen, not even the ones from the population file if disable_overwrite: return False + + # If the statement URI is in the population_uris list, it should be updatable regardless of status + if statement_uri in population_uris: + return True + except ConnectivityStatement.DoesNotExist: return True + return can_statement_be_overwritten(connectivity_statement, statement) diff --git a/applications/composer/backend/tests/test_ingest_statements.py b/applications/composer/backend/tests/test_ingest_statements.py index 7cb234a0..ad8e2ede 100644 --- a/applications/composer/backend/tests/test_ingest_statements.py +++ b/applications/composer/backend/tests/test_ingest_statements.py @@ -1,6 +1,8 @@ +from unittest.mock import patch from composer.services.cs_ingestion.cs_ingestion_services import ingest_statements from composer.models import ConnectivityStatement from composer.services.cs_ingestion.neurondm_script import log_error +from composer.services.cs_ingestion.models import NeuronDMOrigin, NeuronDMDestination, NeuronDMVia, ValidationErrors from composer.enums import CSState from django.db.models import Q from django.test import TestCase @@ -16,6 +18,30 @@ class TestIngestStatements(TestCase): def flush_connectivity_statements(self): ConnectivityStatement.objects.all().delete() + def create_mock_statement_data(self, statement_id, population_set='liver', label_suffix='131'): + """Helper method to create mock statement data""" + return { + 'id': statement_id, + 'label': f'neuron type {population_set} {label_suffix}', + 'pref_label': f'test connectivity statement for {population_set} {label_suffix}', + 'origins': NeuronDMOrigin({'http://purl.obolibrary.org/obo/UBERON_0001234'}), + 'destinations': [NeuronDMDestination({'http://purl.obolibrary.org/obo/UBERON_0005678'}, set(), 'AXON-T')], + 'populationset': population_set, + 'vias': [NeuronDMVia({'http://purl.obolibrary.org/obo/UBERON_0009012'}, set(), 0, 'AXON')], + 'species': ['http://purl.obolibrary.org/obo/NCBITaxon_10090'], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': ['http://uri.interlex.org/tgbugs/uris/readable/neuron-phenotype-sym-post'], + 'other_phenotypes': [], + 'forward_connection': ['http://uri.interlex.org/base/ilx_0795017'], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } + def test_ingestion_with_invalid_imports(self): self.flush_connectivity_statements() self.assertEqual(ConnectivityStatement.objects.count(), 0) @@ -91,3 +117,136 @@ def test_disable_overwrite_for_statements(self): statement_after_edit.knowledge_statement, NEW_KNOWLEDGE_STATEMENT ) + + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_population_uris_overwrite_functionality(self, mock_get_statements): + """Test that statements with URIs in population_uris list are overwritten regardless of status""" + self.flush_connectivity_statements() + + # Mock data for two statements + statement_id_1 = 'http://uri.interlex.org/composer/uris/set/liver/131' + statement_id_2 = 'http://uri.interlex.org/composer/uris/set/heart/42' + + mock_statements = [ + self.create_mock_statement_data(statement_id_1, 'liver', '131'), + self.create_mock_statement_data(statement_id_2, 'heart', '42') + ] + mock_get_statements.return_value = mock_statements + + # Initial ingestion + ingest_statements() + + # Verify statements were created + self.assertEqual(ConnectivityStatement.objects.count(), 2) + + # Get the created statements and change their states to non-overwritable + statement_1 = ConnectivityStatement.objects.get(reference_uri=statement_id_1) + statement_2 = ConnectivityStatement.objects.get(reference_uri=statement_id_2) + + # Change to a state that normally wouldn't be overwritable using update() to bypass FSM + ConnectivityStatement.objects.filter(id=statement_1.id).update( + state=CSState.NPO_APPROVED, + knowledge_statement="Original knowledge statement 1" + ) + + ConnectivityStatement.objects.filter(id=statement_2.id).update( + state=CSState.NPO_APPROVED, + knowledge_statement="Original knowledge statement 2" + ) + + # Update mock data with new knowledge statements + mock_statements[0]['pref_label'] = "Updated knowledge statement 1" + mock_statements[1]['pref_label'] = "Updated knowledge statement 2" + + # Test: Only statement_1 should be updated when using population_uris + population_uris = [statement_id_1] + ingest_statements(population_uris=population_uris) + + # Verify results + updated_statement_1 = ConnectivityStatement.objects.get(reference_uri=statement_id_1) + updated_statement_2 = ConnectivityStatement.objects.get(reference_uri=statement_id_2) + + # Statement 1 should be updated because it was in population_uris + self.assertEqual(updated_statement_1.knowledge_statement, "Updated knowledge statement 1") + + # Statement 2 should NOT be updated because it wasn't in population_uris and has non-overwritable state (NPO_APPROVED) + self.assertEqual(updated_statement_2.knowledge_statement, "Original knowledge statement 2") + + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_population_uris_with_disable_overwrite_true(self, mock_get_statements): + """Test that disable_overwrite=True prevents all overwrites, even for population_uris""" + self.flush_connectivity_statements() + + statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' + + mock_statements = [ + self.create_mock_statement_data(statement_id, 'liver', '131') + ] + mock_get_statements.return_value = mock_statements + + # Initial ingestion + ingest_statements() + + # Verify statement was created + self.assertEqual(ConnectivityStatement.objects.count(), 1) + + # Get the created statement and modify it + statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + original_knowledge = "Original knowledge statement" + statement.knowledge_statement = original_knowledge + statement.save() + + # Update mock data + mock_statements[0]['pref_label'] = "Updated knowledge statement" + + # Test: Even with population_uris, disable_overwrite=True should prevent updates + population_uris = [statement_id] + ingest_statements(disable_overwrite=True, population_uris=population_uris) + + # Verify the statement was NOT updated + unchanged_statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual(unchanged_statement.knowledge_statement, original_knowledge) + + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_population_uris_empty_list(self, mock_get_statements): + """Test that empty population_uris list works normally""" + self.flush_connectivity_statements() + + statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' + + mock_statements = [ + self.create_mock_statement_data(statement_id, 'liver', '131') + ] + mock_get_statements.return_value = mock_statements + + # Test with empty population_uris list + ingest_statements(population_uris=[]) + + # Verify statement was created + self.assertEqual(ConnectivityStatement.objects.count(), 1) + + # Verify the statement exists with correct data + statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual(statement.reference_uri, statement_id) + + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_population_uris_none_parameter(self, mock_get_statements): + """Test that population_uris=None works normally""" + self.flush_connectivity_statements() + + statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' + + mock_statements = [ + self.create_mock_statement_data(statement_id, 'liver', '131') + ] + mock_get_statements.return_value = mock_statements + + # Test with None population_uris (default behavior) + ingest_statements(population_uris=None) + + # Verify statement was created + self.assertEqual(ConnectivityStatement.objects.count(), 1) + + # Verify the statement exists with correct data + statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual(statement.reference_uri, statement_id) From c0bad68a4d0c2033b861c8ef5902cebda744ee86 Mon Sep 17 00:00:00 2001 From: Afonso Pinto Date: Tue, 23 Sep 2025 17:30:46 +0100 Subject: [PATCH 02/38] Update applications/composer/backend/composer/management/commands/ingest_statements.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../backend/composer/management/commands/ingest_statements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/composer/backend/composer/management/commands/ingest_statements.py b/applications/composer/backend/composer/management/commands/ingest_statements.py index 3c1663a6..5ce0fe50 100644 --- a/applications/composer/backend/composer/management/commands/ingest_statements.py +++ b/applications/composer/backend/composer/management/commands/ingest_statements.py @@ -52,7 +52,7 @@ def handle(self, *args, **options): population_uris = [] if population_file: try: - with open(population_file, 'r') as f: + with open(population_file, 'r', encoding='utf-8') as f: population_uris = [line.strip() for line in f if line.strip()] self.stdout.write(f"Loaded {len(population_uris)} population URIs from {population_file}") except FileNotFoundError: From 4883883ab386d437a6d5fe3eea43a06cc39975ab Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Tue, 23 Sep 2025 17:35:53 +0100 Subject: [PATCH 03/38] SCKAN-443 feat: Use set instead of list for population_uris --- .../management/commands/ingest_statements.py | 4 ++-- .../services/cs_ingestion/cs_ingestion_services.py | 2 +- .../cs_ingestion/helpers/overwritable_helper.py | 12 ++++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/applications/composer/backend/composer/management/commands/ingest_statements.py b/applications/composer/backend/composer/management/commands/ingest_statements.py index 3c1663a6..0d43fa15 100644 --- a/applications/composer/backend/composer/management/commands/ingest_statements.py +++ b/applications/composer/backend/composer/management/commands/ingest_statements.py @@ -49,11 +49,11 @@ def handle(self, *args, **options): population_file = options['population_file'] # Read population URIs from file if provided - population_uris = [] + population_uris = set() if population_file: try: with open(population_file, 'r') as f: - population_uris = [line.strip() for line in f if line.strip()] + population_uris = set(line.strip() for line in f if line.strip()) self.stdout.write(f"Loaded {len(population_uris)} population URIs from {population_file}") except FileNotFoundError: self.stderr.write(self.style.ERROR(f"Population file not found: {population_file}")) diff --git a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py index c7c3e0aa..86923f95 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py +++ b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py @@ -32,7 +32,7 @@ def ingest_statements( ): if population_uris is None: - population_uris = [] + population_uris = set() statements_list = get_statements_from_neurondm( full_imports=full_imports, diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py index e07c31ff..a1a6b4c6 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py @@ -1,4 +1,4 @@ -from typing import List, Any, Dict +from typing import List, Any, Dict, Set, Union from composer.enums import CSState, SentenceState from composer.models import Sentence, ConnectivityStatement @@ -10,9 +10,9 @@ logger_service = LoggerService() -def get_overwritable_and_new_statements(statements_list: List[Dict[str, Any]], disable_overwrite: bool=False, population_uris: List[str]=None) -> List[Dict[str, Any]]: +def get_overwritable_and_new_statements(statements_list: List[Dict[str, Any]], disable_overwrite: bool=False, population_uris: Union[List[str], Set[str]]=None) -> List[Dict[str, Any]]: if population_uris is None: - population_uris = [] + population_uris = set() overwritable_and_new_statements = [ statement for statement in statements_list @@ -34,13 +34,13 @@ def is_new_or_overwritable_sentence(statement: Dict, disable_overwrite: bool) -> return can_sentence_be_overwritten(sentence, statement) -def is_new_or_overwritable_statement(statement: Dict, disable_overwrite: bool, population_uris: List[str]=None) -> bool: +def is_new_or_overwritable_statement(statement: Dict, disable_overwrite: bool, population_uris: Union[List[str], Set[str]]=None) -> bool: """ If disable_overwrite is True, then the statement is considered invalid for overwriting - if it already exists in the database. However, statements with URIs in population_uris should be updatable regardless of their status (unless disable_overwrite is True). """ if population_uris is None: - population_uris = [] + population_uris = set() statement_uri = statement[ID] @@ -51,7 +51,7 @@ def is_new_or_overwritable_statement(statement: Dict, disable_overwrite: bool, p if disable_overwrite: return False - # If the statement URI is in the population_uris list, it should be updatable regardless of status + # If the statement URI is in the population_uris set, it should be updatable regardless of status if statement_uri in population_uris: return True From da7ebc9e3888502c884710ec80eebc86c09c282e Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Wed, 24 Sep 2025 15:20:10 +0100 Subject: [PATCH 04/38] SCKAN-434 fix: Change add provenance route to not use path params --- .../backend/composer/api/serializers.py | 11 ++ .../composer/backend/composer/api/views.py | 24 ++-- .../frontend/src/apiclient/backend/api.ts | 114 +++++++++++++++--- .../src/services/ProvenanceService.tsx | 5 +- applications/composer/openapi/openapi.yaml | 52 ++++++-- 5 files changed, 169 insertions(+), 37 deletions(-) diff --git a/applications/composer/backend/composer/api/serializers.py b/applications/composer/backend/composer/api/serializers.py index a1ad78d2..2c2087e6 100644 --- a/applications/composer/backend/composer/api/serializers.py +++ b/applications/composer/backend/composer/api/serializers.py @@ -375,6 +375,17 @@ class Meta: fields = ("id", "uri", "connectivity_statement_id") +class ProvenanceCreateSerializer(serializers.Serializer): + """Serializer for creating provenance via request body""" + uri = serializers.CharField(required=True) + + def validate_uri(self, value): + """Basic URI validation""" + if not value.strip(): + raise serializers.ValidationError("URI cannot be empty.") + return value.strip() + + class SentenceConnectivityStatement(serializers.ModelSerializer): """Connectivity Statement""" diff --git a/applications/composer/backend/composer/api/views.py b/applications/composer/backend/composer/api/views.py index 56755d3e..f9f8a943 100644 --- a/applications/composer/backend/composer/api/views.py +++ b/applications/composer/backend/composer/api/views.py @@ -55,6 +55,7 @@ TagSerializer, ViaSerializer, ProvenanceSerializer, + ProvenanceCreateSerializer, SexSerializer, PopulationSetSerializer, ConnectivityStatementUpdateSerializer, @@ -151,23 +152,20 @@ class ProvenanceMixin( viewsets.GenericViewSet, ): @extend_schema( - parameters=[ - OpenApiParameter( - "uri", - OpenApiTypes.STR, - location=OpenApiParameter.PATH, - required=True, - ) - ], - request=None, + request=ProvenanceCreateSerializer, + responses={200: "ConnectivityStatement updated successfully"}, ) - @action(detail=True, methods=["post"], url_path="add_provenance/(?P.*)") - def add_provenance(self, request, pk=None, uri=None): - procenance, created = Provenance.objects.get_or_create( + @action(detail=True, methods=["post"], url_path="add_provenance") + def add_provenance(self, request, pk=None): + serializer = ProvenanceCreateSerializer(data=request.data) + serializer.is_valid(raise_exception=True) + + uri = serializer.validated_data['uri'] + provenance, created = Provenance.objects.get_or_create( connectivity_statement_id=pk, uri=uri, ) - procenance.save() + provenance.save() instance = self.get_object() return Response(self.get_serializer(instance).data) diff --git a/applications/composer/frontend/src/apiclient/backend/api.ts b/applications/composer/frontend/src/apiclient/backend/api.ts index 7ce88370..89fb30fe 100644 --- a/applications/composer/frontend/src/apiclient/backend/api.ts +++ b/applications/composer/frontend/src/apiclient/backend/api.ts @@ -2753,6 +2753,19 @@ export interface Provenance { */ 'connectivity_statement_id': number; } +/** + * Serializer for creating provenance via request body + * @export + * @interface ProvenanceCreate + */ +export interface ProvenanceCreate { + /** + * + * @type {string} + * @memberof ProvenanceCreate + */ + 'uri': string; +} /** * * @export @@ -3587,18 +3600,17 @@ export const ComposerApiAxiosParamCreator = function (configuration?: Configurat /** * ConnectivityStatement * @param {number} id A unique integer value identifying this connectivity statement. - * @param {string} uri + * @param {ProvenanceCreate} provenanceCreate * @param {*} [options] Override http request option. * @throws {RequiredError} */ - composerConnectivityStatementAddProvenanceCreate: async (id: number, uri: string, options: RawAxiosRequestConfig = {}): Promise => { + composerConnectivityStatementAddProvenanceCreate: async (id: number, provenanceCreate: ProvenanceCreate, options: RawAxiosRequestConfig = {}): Promise => { // verify required parameter 'id' is not null or undefined assertParamExists('composerConnectivityStatementAddProvenanceCreate', 'id', id) - // verify required parameter 'uri' is not null or undefined - assertParamExists('composerConnectivityStatementAddProvenanceCreate', 'uri', uri) - const localVarPath = `/api/composer/connectivity-statement/{id}/add_provenance/{uri}/` - .replace(`{${"id"}}`, encodeURIComponent(String(id))) - .replace(`{${"uri"}}`, encodeURIComponent(String(uri))); + // verify required parameter 'provenanceCreate' is not null or undefined + assertParamExists('composerConnectivityStatementAddProvenanceCreate', 'provenanceCreate', provenanceCreate) + const localVarPath = `/api/composer/connectivity-statement/{id}/add_provenance/` + .replace(`{${"id"}}`, encodeURIComponent(String(id))); // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); let baseOptions; @@ -3621,9 +3633,12 @@ export const ComposerApiAxiosParamCreator = function (configuration?: Configurat + localVarHeaderParameter['Content-Type'] = 'application/json'; + setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = serializeDataIfNeeded(provenanceCreate, localVarRequestOptions, configuration) return { url: toPathString(localVarUrlObj), @@ -7438,12 +7453,12 @@ export const ComposerApiFp = function(configuration?: Configuration) { /** * ConnectivityStatement * @param {number} id A unique integer value identifying this connectivity statement. - * @param {string} uri + * @param {ProvenanceCreate} provenanceCreate * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async composerConnectivityStatementAddProvenanceCreate(id: number, uri: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.composerConnectivityStatementAddProvenanceCreate(id, uri, options); + async composerConnectivityStatementAddProvenanceCreate(id: number, provenanceCreate: ProvenanceCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{ [key: string]: any; }>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.composerConnectivityStatementAddProvenanceCreate(id, provenanceCreate, options); const localVarOperationServerIndex = configuration?.serverIndex ?? 0; const localVarOperationServerBasePath = operationServerMap['ComposerApi.composerConnectivityStatementAddProvenanceCreate']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); @@ -8519,12 +8534,12 @@ export const ComposerApiFactory = function (configuration?: Configuration, baseP /** * ConnectivityStatement * @param {number} id A unique integer value identifying this connectivity statement. - * @param {string} uri + * @param {ProvenanceCreate} provenanceCreate * @param {*} [options] Override http request option. * @throws {RequiredError} */ - composerConnectivityStatementAddProvenanceCreate(id: number, uri: string, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.composerConnectivityStatementAddProvenanceCreate(id, uri, options).then((request) => request(axios, basePath)); + composerConnectivityStatementAddProvenanceCreate(id: number, provenanceCreate: ProvenanceCreate, options?: RawAxiosRequestConfig): AxiosPromise<{ [key: string]: any; }> { + return localVarFp.composerConnectivityStatementAddProvenanceCreate(id, provenanceCreate, options).then((request) => request(axios, basePath)); }, /** * ConnectivityStatement @@ -9377,13 +9392,13 @@ export class ComposerApi extends BaseAPI { /** * ConnectivityStatement * @param {number} id A unique integer value identifying this connectivity statement. - * @param {string} uri + * @param {ProvenanceCreate} provenanceCreate * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ComposerApi */ - public composerConnectivityStatementAddProvenanceCreate(id: number, uri: string, options?: RawAxiosRequestConfig) { - return ComposerApiFp(this.configuration).composerConnectivityStatementAddProvenanceCreate(id, uri, options).then((request) => request(this.axios, this.basePath)); + public composerConnectivityStatementAddProvenanceCreate(id: number, provenanceCreate: ProvenanceCreate, options?: RawAxiosRequestConfig) { + return ComposerApiFp(this.configuration).composerConnectivityStatementAddProvenanceCreate(id, provenanceCreate, options).then((request) => request(this.axios, this.basePath)); } /** @@ -10728,6 +10743,44 @@ export const PublicApiAxiosParamCreator = function (configuration?: Configuratio + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * PredicateMapping: Returns labels for given URIs and predicates. Accepts POST requests with a dictionary of predicates and their URIs. Example request body: { \"hasSomaLocatedIn\": [\"uri1\", \"uri2\"], \"hasAxonLocatedIn\": [\"uri3\", \"uri4\"] } + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + composerPredicateMappingCreate: async (options: RawAxiosRequestConfig = {}): Promise => { + const localVarPath = `/api/composer/predicate-mapping/`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication basicAuth required + // http basic authentication required + setBasicAuthToObject(localVarRequestOptions, configuration) + + // authentication tokenAuth required + await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration) + + // authentication cookieAuth required + + + setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; @@ -10764,6 +10817,17 @@ export const PublicApiFp = function(configuration?: Configuration) { const localVarOperationServerBasePath = operationServerMap['PublicApi.composerKnowledgeStatementList']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }, + /** + * PredicateMapping: Returns labels for given URIs and predicates. Accepts POST requests with a dictionary of predicates and their URIs. Example request body: { \"hasSomaLocatedIn\": [\"uri1\", \"uri2\"], \"hasAxonLocatedIn\": [\"uri3\", \"uri4\"] } + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async composerPredicateMappingCreate(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.composerPredicateMappingCreate(options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['PublicApi.composerPredicateMappingCreate']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, } }; @@ -10788,6 +10852,14 @@ export const PublicApiFactory = function (configuration?: Configuration, basePat composerKnowledgeStatementList(destinationUris?: Array, limit?: number, offset?: number, originUris?: Array, populationUris?: Array, viaUris?: Array, options?: RawAxiosRequestConfig): AxiosPromise { return localVarFp.composerKnowledgeStatementList(destinationUris, limit, offset, originUris, populationUris, viaUris, options).then((request) => request(axios, basePath)); }, + /** + * PredicateMapping: Returns labels for given URIs and predicates. Accepts POST requests with a dictionary of predicates and their URIs. Example request body: { \"hasSomaLocatedIn\": [\"uri1\", \"uri2\"], \"hasAxonLocatedIn\": [\"uri3\", \"uri4\"] } + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + composerPredicateMappingCreate(options?: RawAxiosRequestConfig): AxiosPromise { + return localVarFp.composerPredicateMappingCreate(options).then((request) => request(axios, basePath)); + }, }; }; @@ -10813,6 +10885,16 @@ export class PublicApi extends BaseAPI { public composerKnowledgeStatementList(destinationUris?: Array, limit?: number, offset?: number, originUris?: Array, populationUris?: Array, viaUris?: Array, options?: RawAxiosRequestConfig) { return PublicApiFp(this.configuration).composerKnowledgeStatementList(destinationUris, limit, offset, originUris, populationUris, viaUris, options).then((request) => request(this.axios, this.basePath)); } + + /** + * PredicateMapping: Returns labels for given URIs and predicates. Accepts POST requests with a dictionary of predicates and their URIs. Example request body: { \"hasSomaLocatedIn\": [\"uri1\", \"uri2\"], \"hasAxonLocatedIn\": [\"uri3\", \"uri4\"] } + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof PublicApi + */ + public composerPredicateMappingCreate(options?: RawAxiosRequestConfig) { + return PublicApiFp(this.configuration).composerPredicateMappingCreate(options).then((request) => request(this.axios, this.basePath)); + } } diff --git a/applications/composer/frontend/src/services/ProvenanceService.tsx b/applications/composer/frontend/src/services/ProvenanceService.tsx index 4f3fffda..953a3237 100644 --- a/applications/composer/frontend/src/services/ProvenanceService.tsx +++ b/applications/composer/frontend/src/services/ProvenanceService.tsx @@ -5,7 +5,10 @@ import { AbstractService } from "./AbstractService" class ProvenanceService extends AbstractService { async save(provenance:any) { - return composerApi.composerConnectivityStatementAddProvenanceCreate(provenance.statementId, provenance.uri ).then((response: any) => response.data) + return composerApi.composerConnectivityStatementAddProvenanceCreate( + provenance.statementId, + { uri: provenance.uri } + ).then((response: any) => response.data) } async delete(provenanceId: number, connectivityStatementId: number) { return await composerApi.composerConnectivityStatementDelProvenanceDestroy(connectivityStatementId, provenanceId).then((response: any) => response.data) diff --git a/applications/composer/openapi/openapi.yaml b/applications/composer/openapi/openapi.yaml index 55958699..f7b43a1c 100644 --- a/applications/composer/openapi/openapi.yaml +++ b/applications/composer/openapi/openapi.yaml @@ -405,7 +405,7 @@ paths: responses: '204': description: No response body - /api/composer/connectivity-statement/{id}/add_provenance/{uri}/: + /api/composer/connectivity-statement/{id}/add_provenance/: post: operationId: composer_connectivity_statement_add_provenance_create description: ConnectivityStatement @@ -416,13 +416,20 @@ paths: type: integer description: A unique integer value identifying this connectivity statement. required: true - - in: path - name: uri - schema: - type: string - required: true tags: - composer + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/ProvenanceCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/ProvenanceCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/ProvenanceCreate' + required: true security: - tokenAuth: [] - basicAuth: [] @@ -432,7 +439,9 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ConnectivityStatement' + type: object + additionalProperties: {} + description: Unspecified response body description: '' /api/composer/connectivity-statement/{id}/add_specie/{specie_id}/: post: @@ -1728,6 +1737,27 @@ paths: schema: $ref: '#/components/schemas/PopulationSet' description: '' + /api/composer/predicate-mapping/: + post: + operationId: composer_predicate_mapping_create + description: |- + PredicateMapping: Returns labels for given URIs and predicates. + Accepts POST requests with a dictionary of predicates and their URIs. + Example request body: + { + "hasSomaLocatedIn": ["uri1", "uri2"], + "hasAxonLocatedIn": ["uri3", "uri4"] + } + tags: + - public + security: + - tokenAuth: [] + - basicAuth: [] + - cookieAuth: [] + - {} + responses: + '200': + description: No response body /api/composer/profile/my/: get: operationId: composer_profile_my_retrieve @@ -4707,6 +4737,14 @@ components: - connectivity_statement_id - id - uri + ProvenanceCreate: + type: object + description: Serializer for creating provenance via request body + properties: + uri: + type: string + required: + - uri Relationship: type: object properties: From 7f8cd8c255818319c5401c29d987fa02c081d4e0 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Wed, 24 Sep 2025 15:36:01 +0100 Subject: [PATCH 05/38] SCKAN-434 feat: Add provenance validation --- .../backend/composer/api/serializers.py | 47 ++++++++++++++- .../src/components/Forms/ProvenanceForm.tsx | 57 +++++++++++++++++++ 2 files changed, 101 insertions(+), 3 deletions(-) diff --git a/applications/composer/backend/composer/api/serializers.py b/applications/composer/backend/composer/api/serializers.py index 2c2087e6..357481c3 100644 --- a/applications/composer/backend/composer/api/serializers.py +++ b/applications/composer/backend/composer/api/serializers.py @@ -1,3 +1,4 @@ +import re from typing import List from django.contrib.auth.models import User from django.db.models import Q @@ -380,10 +381,50 @@ class ProvenanceCreateSerializer(serializers.Serializer): uri = serializers.CharField(required=True) def validate_uri(self, value): - """Basic URI validation""" - if not value.strip(): + """Validate that the URI is a valid DOI, PMID, PMCID, or URL""" + if not value or not value.strip(): raise serializers.ValidationError("URI cannot be empty.") - return value.strip() + + uri = value.strip() + + # DOI patterns + doi_patterns = [ + r'^10\.\d{4,}/[^\s]+$', # Standard DOI format + r'^doi:10\.\d{4,}/[^\s]+$', # DOI with prefix + r'^https?://doi\.org/10\.\d{4,}/[^\s]+$', # DOI URL + r'^https?://dx\.doi\.org/10\.\d{4,}/[^\s]+$', # Alternative DOI URL + ] + + # PMID patterns + pmid_patterns = [ + r'^PMID:\s*\d+$', # PMID with prefix + r'^https?://pubmed\.ncbi\.nlm\.nih\.gov/\d+/?$', # PubMed URL + ] + + # PMCID patterns + pmcid_patterns = [ + r'^PMC\d+$', # PMC ID format + r'^PMCID:\s*PMC\d+$', # PMCID with prefix + r'^https?://www\.ncbi\.nlm\.nih\.gov/pmc/articles/PMC\d+/?$', # PMC URL + ] + + # URL pattern (comprehensive) + url_pattern = r'^https?://(?:[-\w.])+(?:[:\d]+)?(?:/(?:[\w/_.])*(?:\?(?:[\w&=%.])*)?(?:#(?:[\w.])*)?)?$' + + # Check if it matches any of the valid patterns + all_patterns = doi_patterns + pmid_patterns + pmcid_patterns + [url_pattern] + + for pattern in all_patterns: + if re.match(pattern, uri, re.IGNORECASE): + return uri + + # If none match, provide helpful error message + raise serializers.ValidationError( + "URI must be a valid DOI (e.g., '10.1000/xyz123' or 'https://doi.org/10.1000/xyz123'), " + "PMID (e.g., 'PMID:12345678' or 'https://pubmed.ncbi.nlm.nih.gov/12345678'), " + "PMCID (e.g., 'PMC1234567' or 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1234567'), " + "or a valid URL (e.g., 'https://example.com')." + ) class SentenceConnectivityStatement(serializers.ModelSerializer): diff --git a/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx b/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx index 7126a0e2..3731b18f 100644 --- a/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx +++ b/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx @@ -23,11 +23,31 @@ const ProvenancesForm = (props: any) => { const handleAutocompleteChange = (e:any, value:any)=>{ const newValue = value.pop() + + // Validate the URI format before saving + if (!isValidProvenance(newValue)) { + alert( + "Invalid provenance format. Please enter a valid:\n" + + "• DOI (e.g., '10.1000/xyz123' or 'https://doi.org/10.1000/xyz123')\n" + + "• PMID (e.g., 'PMID:12345678' or 'https://pubmed.ncbi.nlm.nih.gov/12345678')\n" + + "• PMCID (e.g., 'PMC1234567' or 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1234567')\n" + + "• URL (e.g., 'https://example.com')" + ); + return; + } + return checkOwnership( extraData.connectivity_statement_id, async () => { provenanceService.save({statementId: extraData.connectivity_statement_id, uri: newValue}).then(()=>{ setter() + }).catch((error) => { + // Handle backend validation errors + if (error.response && error.response.data && error.response.data.uri) { + alert(`Validation error: ${error.response.data.uri[0]}`); + } else { + alert('Failed to save provenance. Please try again.'); + } }) }, () => { @@ -37,6 +57,43 @@ const ProvenancesForm = (props: any) => { ); } + const isValidProvenance = (uri: string) => { + if (!uri || !uri.trim()) { + return false; + } + + const trimmedUri = uri.trim(); + + // DOI patterns + const doiPatterns = [ + /^10\.\d{4,}\/[^\s]+$/, // Standard DOI format + /^doi:10\.\d{4,}\/[^\s]+$/i, // DOI with prefix + /^https?:\/\/doi\.org\/10\.\d{4,}\/[^\s]+$/i, // DOI URL + /^https?:\/\/dx\.doi\.org\/10\.\d{4,}\/[^\s]+$/i, // Alternative DOI URL + ]; + + // PMID patterns + const pmidPatterns = [ + /^PMID:\s*\d+$/i, // PMID with prefix + /^https?:\/\/pubmed\.ncbi\.nlm\.nih\.gov\/\d+\/?$/i, // PubMed URL + ]; + + // PMCID patterns + const pmcidPatterns = [ + /^PMC\d+$/i, // PMC ID format + /^PMCID:\s*PMC\d+$/i, // PMCID with prefix + /^https?:\/\/www\.ncbi\.nlm\.nih\.gov\/pmc\/articles\/PMC\d+\/?$/i, // PMC URL + ]; + + // URL pattern (comprehensive) + const urlPattern = /^https?:\/\/(?:[-\w.])+(?::\d+)?(?:\/(?:[\w\/_.])*(?:\?(?:[\w&=%.])*)?(?:#(?:[\w.])*)?)?$/i; + + // Check if it matches any of the valid patterns + const allPatterns = [...doiPatterns, ...pmidPatterns, ...pmcidPatterns, urlPattern]; + + return allPatterns.some(pattern => pattern.test(trimmedUri)); + } + const isValidUrl = (uri: string) =>{ var urlPattern = new RegExp('^(https?:\\/\\/)?'+ '((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|'+ From b63b748668114fc1fa451cbd3af99012f1223750 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Wed, 24 Sep 2025 16:06:09 +0100 Subject: [PATCH 06/38] SCKAN-434 feat: Add fix provenances command --- .../commands/README_fix_provenance_uris.md | 76 +++++++ .../commands/fix_provenance_uris.py | 201 ++++++++++++++++++ 2 files changed, 277 insertions(+) create mode 100644 applications/composer/backend/composer/management/commands/README_fix_provenance_uris.md create mode 100644 applications/composer/backend/composer/management/commands/fix_provenance_uris.py diff --git a/applications/composer/backend/composer/management/commands/README_fix_provenance_uris.md b/applications/composer/backend/composer/management/commands/README_fix_provenance_uris.md new file mode 100644 index 00000000..e9c2c28c --- /dev/null +++ b/applications/composer/backend/composer/management/commands/README_fix_provenance_uris.md @@ -0,0 +1,76 @@ +# Fix Provenance URIs Command + +This Django management command fixes provenance URIs that were affected by the URL decoding bug, where URIs are missing a slash after the protocol (e.g., `https:/example.com` instead of `https://example.com`). + +## Usage + +### Basic usage (dry run - recommended first): +```bash +python manage.py fix_provenance_uris --dry-run +``` + +### Apply the fixes: +```bash +python manage.py fix_provenance_uris +``` + +### Custom options: +```bash +python manage.py fix_provenance_uris --dry-run --batch-size 500 --output-file my_fixes.txt +``` + +## Options + +- `--dry-run`: Show what would be fixed without making changes (recommended for testing) +- `--output-file`: Specify output file for results (default: auto-generated with timestamp) +- `--batch-size`: Number of provenances to process in each batch (default: 1000) + +## Output + +The command creates a detailed text file containing: +1. List of fixed provenance IDs (one per line) for easy scripting +2. Detailed change log showing original and fixed URIs +3. Associated connectivity statement IDs +4. Timestamp and summary information + +## What it fixes + +The command identifies and fixes URIs with these patterns: +- `http:/example.com` → `http://example.com` +- `https:/example.com` → `https://example.com` + +It validates fixes to ensure they: +- Add exactly one slash after the protocol +- Don't break already valid URIs +- Follow expected URI patterns + +## Safety features + +- **Dry run mode**: Test before applying changes +- **Validation**: Ensures fixes are logical and safe +- **Atomic transactions**: All changes are made atomically +- **Progress reporting**: Shows progress for large datasets +- **Detailed logging**: Records all changes for audit purposes +- **Batch processing**: Efficient memory usage for large datasets + +## Example output file + +``` +# Fixed Provenance URIs Report +# Generated: 2025-09-24 15:30:45 +# Total fixed: 3 +# Format: ID | Original URI | Fixed URI | Connectivity Statement ID + +# Fixed Provenance IDs (one per line): +123 +456 +789 + +# Detailed Changes: +ID: 123 + Connectivity Statement: 15 + Original: https:/www.example.com + Fixed: https://www.example.com + Change: Added missing slash after protocol +------------------------------------------------------------ +``` \ No newline at end of file diff --git a/applications/composer/backend/composer/management/commands/fix_provenance_uris.py b/applications/composer/backend/composer/management/commands/fix_provenance_uris.py new file mode 100644 index 00000000..ed071382 --- /dev/null +++ b/applications/composer/backend/composer/management/commands/fix_provenance_uris.py @@ -0,0 +1,201 @@ +import os +import re +from datetime import datetime +from django.core.management.base import BaseCommand, CommandError +from django.db import transaction +from django.conf import settings +from composer.models import Provenance + + +class Command(BaseCommand): + help = 'Fix provenance URIs that were affected by the URL decoding bug (missing slash after protocol)' + + def add_arguments(self, parser): + parser.add_argument( + '--dry-run', + action='store_true', + help='Show what would be fixed without making changes', + ) + parser.add_argument( + '--output-file', + type=str, + default=None, + help='Output file for fixed provenance IDs (default: fixed_provenance_ids_YYYY-MM-DD_HH-MM-SS.txt)', + ) + parser.add_argument( + '--batch-size', + type=int, + default=1000, + help='Batch size for processing provenances (default: 1000)', + ) + + def handle(self, *args, **options): + dry_run = options['dry_run'] + batch_size = options['batch_size'] + + # Generate output filename with timestamp if not provided + if options['output_file']: + output_file = options['output_file'] + else: + timestamp = datetime.now().strftime('%Y-%m-%d_%H-%M-%S') + mode = "dry_run_" if dry_run else "" + output_file = f'fixed_provenance_ids_{mode}{timestamp}.txt' + + self.stdout.write(self.style.SUCCESS('Starting provenance URI fix...')) + + if dry_run: + self.stdout.write(self.style.WARNING('DRY RUN MODE - No changes will be made')) + + # Patterns to identify and fix broken URIs + fix_patterns = [ + (r'^http:/([^/].+)$', r'http://\1'), # http:/domain -> http://domain + (r'^https:/([^/].+)$', r'https://\1'), # https:/domain -> https://domain + ] + + fixed_provenances = [] + total_checked = 0 + + try: + # Get total count for progress + total_provenances = Provenance.objects.count() + self.stdout.write(f'Found {total_provenances} provenances to check...') + + # Process in batches for efficiency + with transaction.atomic(): + # Use iterator to avoid loading all objects into memory + provenance_qs = Provenance.objects.select_related('connectivity_statement').all() + + for provenance in provenance_qs.iterator(chunk_size=batch_size): + total_checked += 1 + original_uri = provenance.uri + fixed_uri = None + + # Try each pattern to find a fix + for pattern, replacement in fix_patterns: + if re.match(pattern, original_uri): + fixed_uri = re.sub(pattern, replacement, original_uri) + break + + # If we found a fix, validate and apply it + if fixed_uri and fixed_uri != original_uri: + if self.is_valid_fix(original_uri, fixed_uri): + fix_info = { + 'id': provenance.id, + 'original_uri': original_uri, + 'fixed_uri': fixed_uri, + 'connectivity_statement_id': provenance.connectivity_statement_id + } + + self.stdout.write( + f'ID {provenance.id}: {original_uri} -> {fixed_uri}' + ) + + if not dry_run: + provenance.uri = fixed_uri + provenance.save(update_fields=['uri']) + + fixed_provenances.append(fix_info) + else: + self.stdout.write( + self.style.WARNING( + f'Skipping ID {provenance.id}: Invalid fix pattern {original_uri} -> {fixed_uri}' + ) + ) + + # Progress indicator + if total_checked % batch_size == 0: + self.stdout.write(f'Processed {total_checked}/{total_provenances}...') + + # Write detailed results to file + self.write_detailed_results_file(fixed_provenances, output_file, dry_run) + + # Summary + self.stdout.write( + self.style.SUCCESS( + f'\nProcess completed!\n' + f'Total provenances checked: {total_checked}\n' + f'Provenances fixed: {len(fixed_provenances)}\n' + f'Results written to: {output_file}' + ) + ) + + if dry_run and fixed_provenances: + self.stdout.write( + self.style.WARNING( + 'Run without --dry-run to apply these fixes.' + ) + ) + elif not fixed_provenances: + self.stdout.write( + self.style.SUCCESS( + 'No broken URIs found! All provenances appear to be correct.' + ) + ) + + except Exception as e: + raise CommandError(f'Error processing provenances: {e}') + + def is_valid_fix(self, original, fixed): + """ + Validate that the fix makes sense: + - Should add exactly one slash after protocol + - Result should be a reasonable URI pattern + - Should not break valid URIs + """ + # Check for http:/ -> http:// conversion + if original.startswith('http:/') and not original.startswith('http://'): + if fixed.startswith('http://') and len(fixed) == len(original) + 1: + # Make sure we didn't break a valid URI like http://example.com + if original.startswith('http://'): + return False + return True + + # Check for https:/ -> https:// conversion + if original.startswith('https:/') and not original.startswith('https://'): + if fixed.startswith('https://') and len(fixed) == len(original) + 1: + # Make sure we didn't break a valid URI like https://example.com + if original.startswith('https://'): + return False + return True + + return False + + def write_detailed_results_file(self, fixed_provenances, filename, dry_run): + """Write detailed results including IDs and URI changes to a text file""" + mode_text = "DRY RUN - " if dry_run else "" + timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S') + + try: + with open(filename, 'w', encoding='utf-8') as f: + # Header + f.write(f"# {mode_text}Fixed Provenance URIs Report\n") + f.write(f"# Generated: {timestamp}\n") + f.write(f"# Total fixed: {len(fixed_provenances)}\n") + f.write(f"# Format: ID | Original URI | Fixed URI | Connectivity Statement ID\n") + f.write("#" + "="*80 + "\n\n") + + if not fixed_provenances: + f.write("No broken URIs found.\n") + else: + # Write summary of IDs only (for easy scripting) + f.write("# Fixed Provenance IDs (one per line):\n") + for item in fixed_provenances: + f.write(f"{item['id']}\n") + + f.write(f"\n# Detailed Changes:\n") + + # Write detailed changes + for item in fixed_provenances: + f.write(f"ID: {item['id']}\n") + f.write(f" Connectivity Statement: {item['connectivity_statement_id']}\n") + f.write(f" Original: {item['original_uri']}\n") + f.write(f" Fixed: {item['fixed_uri']}\n") + f.write(f" Change: Added missing slash after protocol\n") + f.write("-" * 60 + "\n") + + self.stdout.write(f'Detailed results written to {filename}') + + except Exception as e: + self.stdout.write( + self.style.ERROR(f'Failed to write results file: {e}') + ) \ No newline at end of file From c87eedc136630255ff6a1b1adc1314a921f8676b Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Wed, 24 Sep 2025 16:18:53 +0100 Subject: [PATCH 07/38] SCKAN-434 feat: Alter provenance from URIField to custom field --- .../backend/composer/api/serializers.py | 47 --------------- .../migrations/0090_alter_provenance_uri.py | 25 ++++++++ .../composer/backend/composer/models.py | 57 ++++++++++++++++++- 3 files changed, 81 insertions(+), 48 deletions(-) create mode 100644 applications/composer/backend/composer/migrations/0090_alter_provenance_uri.py diff --git a/applications/composer/backend/composer/api/serializers.py b/applications/composer/backend/composer/api/serializers.py index 357481c3..01c19c9f 100644 --- a/applications/composer/backend/composer/api/serializers.py +++ b/applications/composer/backend/composer/api/serializers.py @@ -1,4 +1,3 @@ -import re from typing import List from django.contrib.auth.models import User from django.db.models import Q @@ -380,52 +379,6 @@ class ProvenanceCreateSerializer(serializers.Serializer): """Serializer for creating provenance via request body""" uri = serializers.CharField(required=True) - def validate_uri(self, value): - """Validate that the URI is a valid DOI, PMID, PMCID, or URL""" - if not value or not value.strip(): - raise serializers.ValidationError("URI cannot be empty.") - - uri = value.strip() - - # DOI patterns - doi_patterns = [ - r'^10\.\d{4,}/[^\s]+$', # Standard DOI format - r'^doi:10\.\d{4,}/[^\s]+$', # DOI with prefix - r'^https?://doi\.org/10\.\d{4,}/[^\s]+$', # DOI URL - r'^https?://dx\.doi\.org/10\.\d{4,}/[^\s]+$', # Alternative DOI URL - ] - - # PMID patterns - pmid_patterns = [ - r'^PMID:\s*\d+$', # PMID with prefix - r'^https?://pubmed\.ncbi\.nlm\.nih\.gov/\d+/?$', # PubMed URL - ] - - # PMCID patterns - pmcid_patterns = [ - r'^PMC\d+$', # PMC ID format - r'^PMCID:\s*PMC\d+$', # PMCID with prefix - r'^https?://www\.ncbi\.nlm\.nih\.gov/pmc/articles/PMC\d+/?$', # PMC URL - ] - - # URL pattern (comprehensive) - url_pattern = r'^https?://(?:[-\w.])+(?:[:\d]+)?(?:/(?:[\w/_.])*(?:\?(?:[\w&=%.])*)?(?:#(?:[\w.])*)?)?$' - - # Check if it matches any of the valid patterns - all_patterns = doi_patterns + pmid_patterns + pmcid_patterns + [url_pattern] - - for pattern in all_patterns: - if re.match(pattern, uri, re.IGNORECASE): - return uri - - # If none match, provide helpful error message - raise serializers.ValidationError( - "URI must be a valid DOI (e.g., '10.1000/xyz123' or 'https://doi.org/10.1000/xyz123'), " - "PMID (e.g., 'PMID:12345678' or 'https://pubmed.ncbi.nlm.nih.gov/12345678'), " - "PMCID (e.g., 'PMC1234567' or 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1234567'), " - "or a valid URL (e.g., 'https://example.com')." - ) - class SentenceConnectivityStatement(serializers.ModelSerializer): """Connectivity Statement""" diff --git a/applications/composer/backend/composer/migrations/0090_alter_provenance_uri.py b/applications/composer/backend/composer/migrations/0090_alter_provenance_uri.py new file mode 100644 index 00000000..20e4ad48 --- /dev/null +++ b/applications/composer/backend/composer/migrations/0090_alter_provenance_uri.py @@ -0,0 +1,25 @@ +# Generated by Django 4.1.13 on 2025-09-24 15:17 + +import composer.models +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("composer", "0089_relationship_unique_relationship"), + ] + + operations = [ + migrations.AlterField( + model_name="provenance", + name="uri", + field=composer.models.ProvenanceUriField( + max_length=500, + validators=[ + composer.models.validate_provenance_uri, + composer.models.validate_provenance_uri, + ], + ), + ), + ] diff --git a/applications/composer/backend/composer/models.py b/applications/composer/backend/composer/models.py index 824423da..3d86a1e7 100644 --- a/applications/composer/backend/composer/models.py +++ b/applications/composer/backend/composer/models.py @@ -93,6 +93,61 @@ def formfield(self, *args, **kwargs): return super().formfield(*args, **kwargs) +def validate_provenance_uri(value): + """Validate that the URI is a valid DOI, PMID, PMCID, or URL""" + if not value or not value.strip(): + raise ValidationError("URI cannot be empty.") + + uri = value.strip() + + # DOI patterns + doi_patterns = [ + r'^10\.\d{4,}/[^\s]+$', # Standard DOI format + r'^doi:10\.\d{4,}/[^\s]+$', # DOI with prefix + r'^https?://doi\.org/10\.\d{4,}/[^\s]+$', # DOI URL + r'^https?://dx\.doi\.org/10\.\d{4,}/[^\s]+$', # Alternative DOI URL + ] + + # PMID patterns + pmid_patterns = [ + r'^PMID:\s*\d+$', # PMID with prefix + r'^https?://pubmed\.ncbi\.nlm\.nih\.gov/\d+/?$', # PubMed URL + ] + + # PMCID patterns + pmcid_patterns = [ + r'^PMC\d+$', # PMC ID format + r'^PMCID:\s*PMC\d+$', # PMCID with prefix + r'^https?://www\.ncbi\.nlm\.nih\.gov/pmc/articles/PMC\d+/?$', # PMC URL + ] + + # URL pattern (comprehensive) + url_pattern = r'^https?://(?:[-\w.])+(?:[:\d]+)?(?:/(?:[\w/_.])*(?:\?(?:[\w&=%.])*)?(?:#(?:[\w.])*)?)?$' + + # Check if it matches any of the valid patterns + all_patterns = doi_patterns + pmid_patterns + pmcid_patterns + [url_pattern] + + for pattern in all_patterns: + if re.match(pattern, uri, re.IGNORECASE): + return + + # If none match, raise validation error + raise ValidationError( + "URI must be a valid DOI (e.g., '10.1000/xyz123' or 'https://doi.org/10.1000/xyz123'), " + "PMID (e.g., 'PMID:12345678' or 'https://pubmed.ncbi.nlm.nih.gov/12345678'), " + "PMCID (e.g., 'PMC1234567' or 'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1234567'), " + "or a valid URL (e.g., 'https://example.com')." + ) + + +class ProvenanceUriField(models.CharField): + """Custom field for provenance URIs that accepts DOI, PMID, PMCID, or URLs""" + + def __init__(self, *args, **kwargs): + kwargs['validators'] = kwargs.get('validators', []) + [validate_provenance_uri] + super().__init__(*args, **kwargs) + + # Model Managers class ConnectivityStatementManager(models.Manager): def get_queryset(self): @@ -1212,7 +1267,7 @@ class Provenance(models.Model): connectivity_statement = models.ForeignKey( ConnectivityStatement, on_delete=models.CASCADE ) - uri = models.URLField() + uri = ProvenanceUriField(max_length=500) def __str__(self): return self.uri From aceeba7208787ccef8024135aa70a3d36dd3bae8 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Wed, 24 Sep 2025 17:32:20 +0100 Subject: [PATCH 08/38] SCKAN-434 feat: Add isLoading external prop to FormBase --- .../frontend/src/components/Forms/FormBase.tsx | 8 +++++--- .../frontend/src/components/Forms/ProvenanceForm.tsx | 11 ++++++++++- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/applications/composer/frontend/src/components/Forms/FormBase.tsx b/applications/composer/frontend/src/components/Forms/FormBase.tsx index af99395b..a8331e55 100644 --- a/applications/composer/frontend/src/components/Forms/FormBase.tsx +++ b/applications/composer/frontend/src/components/Forms/FormBase.tsx @@ -33,6 +33,7 @@ export const FormBase = (props: any) => { submitOnChangeFields = [], submitOnBlurFields = [], onUnauthorizedSave: onSaveCancel, + isLoading = false, } = props; const [localData, setLocalData] = useState(data); const [isSaving, setIsSaving] = useState(false); @@ -159,10 +160,11 @@ export const FormBase = (props: any) => { } }; + const showSpinner = isLoading || isSaving || !data; return ( <> - {(!data || isSaving) && ( - + {showSpinner && ( + )} @@ -171,7 +173,7 @@ export const FormBase = (props: any) => { schema={customSchema} uiSchema={customUiSchema} formData={localData} - disabled={disabled} + disabled={disabled || showSpinner} validator={validator} onChange={handleUpdate} onSubmit={handleSubmit} diff --git a/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx b/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx index 3731b18f..ab669a74 100644 --- a/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx +++ b/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, {useState} from "react"; import { FormBase } from './FormBase' import { jsonSchemas } from '../../services/JsonSchema' import provenanceService from '../../services/ProvenanceService' @@ -9,6 +9,7 @@ import {ChangeRequestStatus} from "../../helpers/settings"; const ProvenancesForm = (props: any) => { const { provenancesData, setter, extraData, isDisabled } = props + const [isLoading, setIsLoading] = useState(false) const { schema, uiSchema } = jsonSchemas.getProvenanceSchema() const copiedSchema = JSON.parse(JSON.stringify(schema)); @@ -36,6 +37,7 @@ const ProvenancesForm = (props: any) => { return; } + setIsLoading(true) return checkOwnership( extraData.connectivity_statement_id, async () => { @@ -48,9 +50,12 @@ const ProvenancesForm = (props: any) => { } else { alert('Failed to save provenance. Please try again.'); } + }).finally(() => { + setIsLoading(false) }) }, () => { + setIsLoading(false) return ChangeRequestStatus.CANCELLED; }, getOwnershipAlertMessage // message to show when ownership needs to be reassigned @@ -112,13 +117,16 @@ const ProvenancesForm = (props: any) => { data: provenancesData?.map((row: Provenance) => ({id: row.id, label: row.uri, enableClick: isValidUrl(row.uri) })) || [], placeholder: isDisabled ? null : 'Enter Provenances (Press Enter to add a Provenance)', removeChip: function(provenanceId: any) { + setIsLoading(true) return checkOwnership( extraData.connectivity_statement_id, async () => { await provenanceService.delete(provenanceId, extraData.connectivity_statement_id) refresh() + setIsLoading(false) }, () => { + setIsLoading(false) return ChangeRequestStatus.CANCELLED; }, getOwnershipAlertMessage // message to show when ownership needs to be reassigned @@ -150,6 +158,7 @@ const ProvenancesForm = (props: any) => { extraData={extraData} setter={() => refresh()} disabled={isDisabled} + isLoading={isLoading} /> ) } From 8918e4382800a3f8da65f53d41cdc5dcd6b4290b Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Wed, 24 Sep 2025 18:08:29 +0100 Subject: [PATCH 09/38] SCKAN-434 refactor: Apply copilot feedback --- applications/composer/backend/composer/api/views.py | 1 - .../backend/composer/migrations/0090_alter_provenance_uri.py | 1 - 2 files changed, 2 deletions(-) diff --git a/applications/composer/backend/composer/api/views.py b/applications/composer/backend/composer/api/views.py index f9f8a943..84d7d9b8 100644 --- a/applications/composer/backend/composer/api/views.py +++ b/applications/composer/backend/composer/api/views.py @@ -165,7 +165,6 @@ def add_provenance(self, request, pk=None): connectivity_statement_id=pk, uri=uri, ) - provenance.save() instance = self.get_object() return Response(self.get_serializer(instance).data) diff --git a/applications/composer/backend/composer/migrations/0090_alter_provenance_uri.py b/applications/composer/backend/composer/migrations/0090_alter_provenance_uri.py index 20e4ad48..e23b65e0 100644 --- a/applications/composer/backend/composer/migrations/0090_alter_provenance_uri.py +++ b/applications/composer/backend/composer/migrations/0090_alter_provenance_uri.py @@ -18,7 +18,6 @@ class Migration(migrations.Migration): max_length=500, validators=[ composer.models.validate_provenance_uri, - composer.models.validate_provenance_uri, ], ), ), From 662f0a0ffcc82641e73e7ee210657202b8c9c832 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Wed, 24 Sep 2025 18:15:03 +0100 Subject: [PATCH 10/38] SCKAN-434 style: Apply linting --- .../composer/frontend/src/components/Forms/ProvenanceForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx b/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx index ab669a74..7ae1ed9e 100644 --- a/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx +++ b/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx @@ -91,7 +91,7 @@ const ProvenancesForm = (props: any) => { ]; // URL pattern (comprehensive) - const urlPattern = /^https?:\/\/(?:[-\w.])+(?::\d+)?(?:\/(?:[\w\/_.])*(?:\?(?:[\w&=%.])*)?(?:#(?:[\w.])*)?)?$/i; + const urlPattern = /^https?:\/\/(?:[-\w.])+(?::\d+)?(?:\/(?:[\w/_.])*(?:\?(?:[\w&=%.])*)?(?:#(?:[\w.])*)?)?$/i; // Check if it matches any of the valid patterns const allPatterns = [...doiPatterns, ...pmidPatterns, ...pmcidPatterns, urlPattern]; From c9700637ef8066a44c4f169f56cbd32e00018447 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Mon, 29 Sep 2025 11:36:41 +0100 Subject: [PATCH 11/38] SCKAN-443 feat: Make population_file restrict what's ingested --- .../management/commands/ingest_statements.py | 4 +- .../cs_ingestion/cs_ingestion_services.py | 9 +- .../helpers/overwritable_helper.py | 35 +++++-- .../backend/tests/test_ingest_statements.py | 97 ++++++++++++++++--- 4 files changed, 120 insertions(+), 25 deletions(-) diff --git a/applications/composer/backend/composer/management/commands/ingest_statements.py b/applications/composer/backend/composer/management/commands/ingest_statements.py index 700ce60f..3a8cc4e0 100644 --- a/applications/composer/backend/composer/management/commands/ingest_statements.py +++ b/applications/composer/backend/composer/management/commands/ingest_statements.py @@ -37,7 +37,7 @@ def add_arguments(self, parser): parser.add_argument( '--population_file', type=str, - help='Path to a text file containing population URIs (one per line) that should be updated regardless of their status.', + help='Path to a text file containing population URIs (one per line). When provided, ONLY statements matching these URIs will be processed for ingestion.', ) def handle(self, *args, **options): @@ -49,7 +49,7 @@ def handle(self, *args, **options): population_file = options['population_file'] # Read population URIs from file if provided - population_uris = set() + population_uris = None if population_file: try: with open(population_file, 'r', encoding='utf-8') as f: diff --git a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py index 86923f95..04dd76d5 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py +++ b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py @@ -4,6 +4,7 @@ from composer.models import AlertType from composer.services.cs_ingestion.helpers.overwritable_helper import ( + filter_statements_by_population_uris, get_overwritable_and_new_statements, ) from composer.services.cs_ingestion.helpers.sentence_helper import ( @@ -21,7 +22,6 @@ logger_service = LoggerService() - def ingest_statements( update_upstream=False, update_anatomical_entities=False, @@ -31,15 +31,16 @@ def ingest_statements( population_uris=None, ): - if population_uris is None: - population_uris = set() - statements_list = get_statements_from_neurondm( full_imports=full_imports, label_imports=label_imports, logger_service_param=logger_service, statement_alert_uris=set(AlertType.objects.values_list("uri", flat=True)), ) + + # Filter statements by population URIs if a population file was provided + statements_list = filter_statements_by_population_uris(statements_list, population_uris) + overridable_and_new_statements = get_overwritable_and_new_statements( statements_list, disable_overwrite, population_uris ) diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py index a1a6b4c6..49b91404 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/overwritable_helper.py @@ -1,4 +1,4 @@ -from typing import List, Any, Dict, Set, Union +from typing import List, Any, Dict, Set, Optional from composer.enums import CSState, SentenceState from composer.models import Sentence, ConnectivityStatement @@ -10,9 +10,31 @@ logger_service = LoggerService() -def get_overwritable_and_new_statements(statements_list: List[Dict[str, Any]], disable_overwrite: bool=False, population_uris: Union[List[str], Set[str]]=None) -> List[Dict[str, Any]]: + +def filter_statements_by_population_uris(statements_list, population_uris): + """ + Filter statements to only include those with URIs in the population_uris set. + + Args: + statements_list: List of statements from neurondm + population_uris: Set of URIs to filter by. If None, no filtering is applied. + If empty set, all statements are filtered out. + + Returns: + Filtered list of statements + """ if population_uris is None: - population_uris = set() + # No population file was provided, return all statements + return statements_list + + # Population file was provided (even if empty), filter statements + return [ + statement for statement in statements_list + if statement[ID] in population_uris + ] + + +def get_overwritable_and_new_statements(statements_list: List[Dict[str, Any]], disable_overwrite: bool=False, population_uris: Optional[Set[str]]=None) -> List[Dict[str, Any]]: overwritable_and_new_statements = [ statement for statement in statements_list @@ -34,13 +56,12 @@ def is_new_or_overwritable_sentence(statement: Dict, disable_overwrite: bool) -> return can_sentence_be_overwritten(sentence, statement) -def is_new_or_overwritable_statement(statement: Dict, disable_overwrite: bool, population_uris: Union[List[str], Set[str]]=None) -> bool: +def is_new_or_overwritable_statement(statement: Dict, disable_overwrite: bool, population_uris: Optional[Set[str]]=None) -> bool: """ If disable_overwrite is True, then the statement is considered invalid for overwriting - if it already exists in the database. However, statements with URIs in population_uris should be updatable regardless of their status (unless disable_overwrite is True). + Note: When population_uris is provided, statement filtering is done at the service layer. """ - if population_uris is None: - population_uris = set() statement_uri = statement[ID] @@ -52,7 +73,7 @@ def is_new_or_overwritable_statement(statement: Dict, disable_overwrite: bool, p return False # If the statement URI is in the population_uris set, it should be updatable regardless of status - if statement_uri in population_uris: + if population_uris is not None and statement_uri in population_uris: return True except ConnectivityStatement.DoesNotExist: diff --git a/applications/composer/backend/tests/test_ingest_statements.py b/applications/composer/backend/tests/test_ingest_statements.py index ad8e2ede..b5f05b80 100644 --- a/applications/composer/backend/tests/test_ingest_statements.py +++ b/applications/composer/backend/tests/test_ingest_statements.py @@ -159,7 +159,7 @@ def test_population_uris_overwrite_functionality(self, mock_get_statements): mock_statements[1]['pref_label'] = "Updated knowledge statement 2" # Test: Only statement_1 should be updated when using population_uris - population_uris = [statement_id_1] + population_uris = {statement_id_1} ingest_statements(population_uris=population_uris) # Verify results @@ -200,7 +200,7 @@ def test_population_uris_with_disable_overwrite_true(self, mock_get_statements): mock_statements[0]['pref_label'] = "Updated knowledge statement" # Test: Even with population_uris, disable_overwrite=True should prevent updates - population_uris = [statement_id] + population_uris = {statement_id} ingest_statements(disable_overwrite=True, population_uris=population_uris) # Verify the statement was NOT updated @@ -208,8 +208,8 @@ def test_population_uris_with_disable_overwrite_true(self, mock_get_statements): self.assertEqual(unchanged_statement.knowledge_statement, original_knowledge) @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') - def test_population_uris_empty_list(self, mock_get_statements): - """Test that empty population_uris list works normally""" + def test_population_uris_empty_set_filters_all(self, mock_get_statements): + """Test that empty population_uris set filters out all statements""" self.flush_connectivity_statements() statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' @@ -219,15 +219,11 @@ def test_population_uris_empty_list(self, mock_get_statements): ] mock_get_statements.return_value = mock_statements - # Test with empty population_uris list - ingest_statements(population_uris=[]) + # Test with empty population_uris set (should filter everything) + ingest_statements(population_uris=set()) - # Verify statement was created - self.assertEqual(ConnectivityStatement.objects.count(), 1) - - # Verify the statement exists with correct data - statement = ConnectivityStatement.objects.get(reference_uri=statement_id) - self.assertEqual(statement.reference_uri, statement_id) + # Verify no statements were created (empty set = empty filter) + self.assertEqual(ConnectivityStatement.objects.count(), 0) @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') def test_population_uris_none_parameter(self, mock_get_statements): @@ -250,3 +246,80 @@ def test_population_uris_none_parameter(self, mock_get_statements): # Verify the statement exists with correct data statement = ConnectivityStatement.objects.get(reference_uri=statement_id) self.assertEqual(statement.reference_uri, statement_id) + + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_population_uris_filtering_behavior(self, mock_get_statements): + """Test that when population_uris is provided, only statements in the set are processed""" + self.flush_connectivity_statements() + + # Mock data for three statements + statement_id_1 = 'http://uri.interlex.org/composer/uris/set/liver/131' + statement_id_2 = 'http://uri.interlex.org/composer/uris/set/heart/42' + statement_id_3 = 'http://uri.interlex.org/composer/uris/set/brain/256' + + mock_statements = [ + self.create_mock_statement_data(statement_id_1, 'liver', '131'), + self.create_mock_statement_data(statement_id_2, 'heart', '42'), + self.create_mock_statement_data(statement_id_3, 'brain', '256') + ] + mock_get_statements.return_value = mock_statements + + # Test: Only statements in population_uris should be processed + population_uris = {statement_id_1, statement_id_3} # Only liver and brain, not heart + ingest_statements(population_uris=population_uris) + + # Verify only 2 statements were created (liver and brain, but not heart) + self.assertEqual(ConnectivityStatement.objects.count(), 2) + + # Verify the correct statements exist + self.assertTrue(ConnectivityStatement.objects.filter(reference_uri=statement_id_1).exists()) + self.assertFalse(ConnectivityStatement.objects.filter(reference_uri=statement_id_2).exists()) # heart should not exist + self.assertTrue(ConnectivityStatement.objects.filter(reference_uri=statement_id_3).exists()) + + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_population_uris_none_processes_all(self, mock_get_statements): + """Test that when population_uris is None, all statements are processed (normal behavior)""" + self.flush_connectivity_statements() + + # Mock data for two statements + statement_id_1 = 'http://uri.interlex.org/composer/uris/set/liver/131' + statement_id_2 = 'http://uri.interlex.org/composer/uris/set/heart/42' + + mock_statements = [ + self.create_mock_statement_data(statement_id_1, 'liver', '131'), + self.create_mock_statement_data(statement_id_2, 'heart', '42') + ] + mock_get_statements.return_value = mock_statements + + # Test: None population_uris should process all statements + ingest_statements(population_uris=None) + + # Verify both statements were created + self.assertEqual(ConnectivityStatement.objects.count(), 2) + self.assertTrue(ConnectivityStatement.objects.filter(reference_uri=statement_id_1).exists()) + self.assertTrue(ConnectivityStatement.objects.filter(reference_uri=statement_id_2).exists()) + + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_population_uris_none_vs_empty_set_behavior(self, mock_get_statements): + """Test that None (no population file) and empty set (empty population file) behave differently""" + self.flush_connectivity_statements() + + # Mock data for two statements + statement_id_1 = 'http://uri.interlex.org/composer/uris/set/liver/131' + statement_id_2 = 'http://uri.interlex.org/composer/uris/set/heart/42' + + mock_statements = [ + self.create_mock_statement_data(statement_id_1, 'liver', '131'), + self.create_mock_statement_data(statement_id_2, 'heart', '42') + ] + mock_get_statements.return_value = mock_statements + + # Test 1: None means no population file was provided - process all statements + ingest_statements(population_uris=None) + self.assertEqual(ConnectivityStatement.objects.count(), 2, "None should process all statements") + + self.flush_connectivity_statements() + + # Test 2: Empty set means population file was provided but empty - process no statements + ingest_statements(population_uris=set()) + self.assertEqual(ConnectivityStatement.objects.count(), 0, "Empty set should process no statements") From c1a30841940db1ce1fd93046218d131e2a4d8d3d Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Mon, 29 Sep 2025 18:55:20 +0200 Subject: [PATCH 12/38] bumping version up --- applications/composer/backend/backend/settings.py | 2 ++ applications/composer/backend/version.py | 2 +- applications/composer/frontend/package.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/applications/composer/backend/backend/settings.py b/applications/composer/backend/backend/settings.py index b2dfad5d..2291ad09 100644 --- a/applications/composer/backend/backend/settings.py +++ b/applications/composer/backend/backend/settings.py @@ -181,6 +181,8 @@ "http://localhost:8000/", "https://localhost:8000/", "https://127.0.0.1:8000/", + "http://localhost:3000/", + "https://localhost:3000/", ] # override django admin base template with a local template diff --git a/applications/composer/backend/version.py b/applications/composer/backend/version.py index e8041539..221603aa 100644 --- a/applications/composer/backend/version.py +++ b/applications/composer/backend/version.py @@ -1 +1 @@ -VERSION = "5.1.1" +VERSION = "5.2.0" diff --git a/applications/composer/frontend/package.json b/applications/composer/frontend/package.json index c0c49615..49ef2aaa 100644 --- a/applications/composer/frontend/package.json +++ b/applications/composer/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "5.1.1", + "version": "5.2.0", "private": true, "main": "index.js", "proxy": "http://127.0.0.1:8000/", From 2beb36a084d56195fcd7fbee45f07120b4808b58 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Tue, 30 Sep 2025 16:37:49 +0100 Subject: [PATCH 13/38] SCKAN-434 fix: Make doi regex more rigid --- applications/composer/backend/composer/models.py | 12 ++++++------ .../frontend/src/components/Forms/ProvenanceForm.tsx | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/applications/composer/backend/composer/models.py b/applications/composer/backend/composer/models.py index 3d86a1e7..c5351036 100644 --- a/applications/composer/backend/composer/models.py +++ b/applications/composer/backend/composer/models.py @@ -102,10 +102,10 @@ def validate_provenance_uri(value): # DOI patterns doi_patterns = [ - r'^10\.\d{4,}/[^\s]+$', # Standard DOI format - r'^doi:10\.\d{4,}/[^\s]+$', # DOI with prefix - r'^https?://doi\.org/10\.\d{4,}/[^\s]+$', # DOI URL - r'^https?://dx\.doi\.org/10\.\d{4,}/[^\s]+$', # Alternative DOI URL + r'^10\.\d{4,}/[a-zA-Z0-9\-._():]+(?:/[a-zA-Z0-9\-._():]+)*$', # Standard DOI format - no consecutive slashes + r'^doi:10\.\d{4,}/[a-zA-Z0-9\-._():]+(?:/[a-zA-Z0-9\-._():]+)*$', # DOI with prefix + r'^https?://doi\.org/10\.\d{4,}/[a-zA-Z0-9\-._():]+(?:/[a-zA-Z0-9\-._():]+)*$', # DOI URL + r'^https?://dx\.doi\.org/10\.\d{4,}/[a-zA-Z0-9\-._():]+(?:/[a-zA-Z0-9\-._():]+)*$', # Alternative DOI URL ] # PMID patterns @@ -121,8 +121,8 @@ def validate_provenance_uri(value): r'^https?://www\.ncbi\.nlm\.nih\.gov/pmc/articles/PMC\d+/?$', # PMC URL ] - # URL pattern (comprehensive) - url_pattern = r'^https?://(?:[-\w.])+(?:[:\d]+)?(?:/(?:[\w/_.])*(?:\?(?:[\w&=%.])*)?(?:#(?:[\w.])*)?)?$' + # URL pattern + url_pattern = r'^https?://[a-zA-Z0-9\-.]+(:[0-9]+)?(/[a-zA-Z0-9\-._~!$&\'()*+,;=:@]+)*(\?[a-zA-Z0-9\-._~!$&\'()*+,;=:@/?]*)?(\#[a-zA-Z0-9\-._~!$&\'()*+,;=:@/?]*)?$' # Check if it matches any of the valid patterns all_patterns = doi_patterns + pmid_patterns + pmcid_patterns + [url_pattern] diff --git a/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx b/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx index 7ae1ed9e..fb57a17a 100644 --- a/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx +++ b/applications/composer/frontend/src/components/Forms/ProvenanceForm.tsx @@ -71,10 +71,10 @@ const ProvenancesForm = (props: any) => { // DOI patterns const doiPatterns = [ - /^10\.\d{4,}\/[^\s]+$/, // Standard DOI format - /^doi:10\.\d{4,}\/[^\s]+$/i, // DOI with prefix - /^https?:\/\/doi\.org\/10\.\d{4,}\/[^\s]+$/i, // DOI URL - /^https?:\/\/dx\.doi\.org\/10\.\d{4,}\/[^\s]+$/i, // Alternative DOI URL + /^10\.\d{4,}\/[a-zA-Z0-9\-._():]+(?:\/[a-zA-Z0-9\-._():]+)*$/, // Standard DOI format - no consecutive slashes + /^doi:10\.\d{4,}\/[a-zA-Z0-9\-._():]+(?:\/[a-zA-Z0-9\-._():]+)*$/i, // DOI with prefix + /^https?:\/\/doi\.org\/10\.\d{4,}\/[a-zA-Z0-9\-._():]+(?:\/[a-zA-Z0-9\-._():]+)*$/i, // DOI URL + /^https?:\/\/dx\.doi\.org\/10\.\d{4,}\/[a-zA-Z0-9\-._():]+(?:\/[a-zA-Z0-9\-._():]+)*$/i, // Alternative DOI URL ]; // PMID patterns @@ -90,8 +90,8 @@ const ProvenancesForm = (props: any) => { /^https?:\/\/www\.ncbi\.nlm\.nih\.gov\/pmc\/articles\/PMC\d+\/?$/i, // PMC URL ]; - // URL pattern (comprehensive) - const urlPattern = /^https?:\/\/(?:[-\w.])+(?::\d+)?(?:\/(?:[\w/_.])*(?:\?(?:[\w&=%.])*)?(?:#(?:[\w.])*)?)?$/i; + // URL pattern + const urlPattern = /^https?:\/\/[a-zA-Z0-9\-.]+(?::[0-9]+)?(?:\/[a-zA-Z0-9\-._~!$&'()*+,;=:@]+)*(?:\?[a-zA-Z0-9\-._~!$&'()*+,;=:@\/?]*)?(?:\#[a-zA-Z0-9\-._~!$&'()*+,;=:@\/?]*)?$/i; // Check if it matches any of the valid patterns const allPatterns = [...doiPatterns, ...pmidPatterns, ...pmcidPatterns, urlPattern]; From c9955fa46916fa8e8ec72f63428a8b96172f42c7 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Thu, 2 Oct 2025 12:56:30 +0100 Subject: [PATCH 14/38] SCKAN-443 feat: Prevent transitions when population uri is provided --- .../management/commands/ingest_statements.py | 7 +- .../cs_ingestion/cs_ingestion_services.py | 8 +- .../cs_ingestion/helpers/statement_helper.py | 46 +- .../backend/tests/test_ingest_statements.py | 468 +++++++++++++----- .../tests/test_ingest_statements_e2e.py | 95 ++++ 5 files changed, 490 insertions(+), 134 deletions(-) create mode 100644 applications/composer/backend/tests/test_ingest_statements_e2e.py diff --git a/applications/composer/backend/composer/management/commands/ingest_statements.py b/applications/composer/backend/composer/management/commands/ingest_statements.py index 3a8cc4e0..6ffc2398 100644 --- a/applications/composer/backend/composer/management/commands/ingest_statements.py +++ b/applications/composer/backend/composer/management/commands/ingest_statements.py @@ -64,10 +64,13 @@ def handle(self, *args, **options): start_time = time.time() - ingest_statements(update_upstream, update_anatomical_entities, disable_overwrite, full_imports, label_imports, population_uris) + success = ingest_statements(update_upstream, update_anatomical_entities, disable_overwrite, full_imports, label_imports, population_uris) end_time = time.time() duration = end_time - start_time - self.stdout.write(self.style.SUCCESS(f"Ingestion completed in {duration:.2f} seconds.")) \ No newline at end of file + if success: + self.stdout.write(self.style.SUCCESS(f"Ingestion completed successfully in {duration:.2f} seconds.")) + else: + self.stderr.write(self.style.ERROR(f"Ingestion failed after {duration:.2f} seconds. Check logs for details.")) \ No newline at end of file diff --git a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py index 04dd76d5..64d12eff 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py +++ b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py @@ -48,13 +48,17 @@ def ingest_statements( overridable_and_new_statements, update_anatomical_entities ) + # When population_uris is provided (i.e., a population file was used), + # skip state transitions to preserve existing statement states + skip_state_transitions = population_uris is not None + successful_transaction = True try: with transaction.atomic(): for statement in statements: sentence, _ = get_or_create_sentence(statement) create_or_update_connectivity_statement( - statement, sentence, update_anatomical_entities, logger_service + statement, sentence, update_anatomical_entities, logger_service, skip_state_transitions ) update_forward_connections(statements) @@ -77,3 +81,5 @@ def ingest_statements( if update_upstream: update_upstream_statements() logger_service.write_ingested_statements_to_file(statements) + + return successful_transaction diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py index 64195f1d..d994dcf1 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py @@ -59,7 +59,23 @@ def create_or_update_connectivity_statement( sentence: Sentence, update_anatomical_entities: bool, logger_service: LoggerService, + skip_state_transitions: bool = False, ) -> Tuple[ConnectivityStatement, bool]: + """ + Create or update a connectivity statement from ingested data. + + Args: + statement: The statement data dictionary + sentence: The associated sentence object + update_anatomical_entities: Whether to update anatomical entity relationships + logger_service: Service for logging anomalies + skip_state_transitions: When True, state transitions are skipped. This is used + when a population file is provided to preserve existing + statement states during targeted updates. + + Returns: + Tuple of (ConnectivityStatement, created) where created is True if new + """ reference_uri = statement[ID] populationset_name = statement.get("populationset", "") defaults = { @@ -94,20 +110,24 @@ def create_or_update_connectivity_statement( validation_errors = statement.get(VALIDATION_ERRORS, ValidationErrors()) - if validation_errors.has_errors(): - error_message = validation_errors.to_string() - if connectivity_statement.state != CSState.INVALID: - do_transition_to_invalid_with_note(connectivity_statement, error_message) + # State transitions: Handle validation errors and state updates + # When skip_state_transitions is True (population file provided), we preserve + # the existing statement state instead of forcing transitions + if not skip_state_transitions: + if validation_errors.has_errors(): + error_message = validation_errors.to_string() + if connectivity_statement.state != CSState.INVALID: + do_transition_to_invalid_with_note(connectivity_statement, error_message) + else: + create_invalid_note(connectivity_statement, error_message) else: - create_invalid_note(connectivity_statement, error_message) - else: - if ( - connectivity_statement.state != CSState.EXPORTED - and ConnectivityStatementStateService.has_populationset( - connectivity_statement=connectivity_statement - ) - ): - do_transition_to_exported(connectivity_statement) + if ( + connectivity_statement.state != CSState.EXPORTED + and ConnectivityStatementStateService.has_populationset( + connectivity_statement=connectivity_statement + ) + ): + do_transition_to_exported(connectivity_statement) for alert_data in statement.get(STATEMENT_ALERTS, []): try: diff --git a/applications/composer/backend/tests/test_ingest_statements.py b/applications/composer/backend/tests/test_ingest_statements.py index b5f05b80..2a7f829a 100644 --- a/applications/composer/backend/tests/test_ingest_statements.py +++ b/applications/composer/backend/tests/test_ingest_statements.py @@ -9,115 +9,9 @@ class TestIngestStatements(TestCase): - """ - NOTE: - This test depends on the directory system of the Scicrunch neurondm - here - https://raw.githubusercontent.com/SciCrunch/NIF-Ontology/neurons/**/*.ttl - Check more details in neurondm_script.py - """ - def flush_connectivity_statements(self): ConnectivityStatement.objects.all().delete() - def create_mock_statement_data(self, statement_id, population_set='liver', label_suffix='131'): - """Helper method to create mock statement data""" - return { - 'id': statement_id, - 'label': f'neuron type {population_set} {label_suffix}', - 'pref_label': f'test connectivity statement for {population_set} {label_suffix}', - 'origins': NeuronDMOrigin({'http://purl.obolibrary.org/obo/UBERON_0001234'}), - 'destinations': [NeuronDMDestination({'http://purl.obolibrary.org/obo/UBERON_0005678'}, set(), 'AXON-T')], - 'populationset': population_set, - 'vias': [NeuronDMVia({'http://purl.obolibrary.org/obo/UBERON_0009012'}, set(), 0, 'AXON')], - 'species': ['http://purl.obolibrary.org/obo/NCBITaxon_10090'], - 'sex': [], - 'circuit_type': [], - 'circuit_role': [], - 'phenotype': ['http://uri.interlex.org/tgbugs/uris/readable/neuron-phenotype-sym-post'], - 'other_phenotypes': [], - 'forward_connection': ['http://uri.interlex.org/base/ilx_0795017'], - 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], - 'sentence_number': [], - 'note_alert': [], - 'validation_errors': ValidationErrors(), - 'statement_alerts': [] - } - - def test_ingestion_with_invalid_imports(self): - self.flush_connectivity_statements() - self.assertEqual(ConnectivityStatement.objects.count(), 0) - ingest_statements(full_imports=['full'], label_imports=['label']) - self.assertEqual(ConnectivityStatement.objects.count(), 0) - - def test_ingestion_with_valid_label_and_invalid_full_imports(self): - ingest_statements( - full_imports=['full'], - label_imports=['apinatomy-neuron-populations'] - ) - self.assertEqual(ConnectivityStatement.objects.count(), 0) - self.flush_connectivity_statements() - - def test_ingestion_with_valid_full_and_invalid_label_imports(self): - ingest_statements(full_imports=['sparc-nlp'], label_imports=['label']) - self.assertNotEqual(ConnectivityStatement.objects.count(), 0) - self.flush_connectivity_statements() - - def test_ingestion_with_valid_imports(self): - ingest_statements( - full_imports=['sparc-nlp'], - label_imports=['apinatomy-neuron-populations'] - ) - self.assertNotEqual(ConnectivityStatement.objects.count(), 0) - self.flush_connectivity_statements() - - def test_ingestion_without_passing_full_imports(self): - # don't pass the full import and it will still work - by utilizing the defaults - self.flush_connectivity_statements() - ingest_statements(label_imports=['apinatomy-neuron-populations']) - self.assertNotEqual(ConnectivityStatement.objects.count(), 0) - - def test_ingestion_without_passing_label_imports(self): - # don't pass the label import and it will still work - by utilizing the defaults - self.flush_connectivity_statements() - ingest_statements(full_imports=['sparc-nlp']) - self.assertNotEqual(ConnectivityStatement.objects.count(), 0) - - def test_disable_overwrite_for_statements(self): - self.flush_connectivity_statements() - ingest_statements(full_imports=['sparc-nlp']) - - NEW_KNOWLEDGE_STATEMENT = "This is a new knowledge statement" - - # Edit the statement that is in EXPORTED or in INVALID state to check if that is overwritten - # Other states are not overwritable anyway - statement_to_edit = ConnectivityStatement.objects.filter( - Q(state=CSState.EXPORTED) | Q(state=CSState.INVALID)).first() - - if not statement_to_edit: - log_error( - "No statement found in EXPORTED or INVALID state to test disable_overwrite") - return - - statement_to_edit.knowledge_statement = NEW_KNOWLEDGE_STATEMENT - statement_to_edit.save() - - # The Knowledge statement will be new updated statement, if the disable_overwrite flag is enabled - ingest_statements(disable_overwrite=True) - statement_after_edit = ConnectivityStatement.objects.get( - id=statement_to_edit.id) - self.assertEqual( - statement_after_edit.knowledge_statement, - NEW_KNOWLEDGE_STATEMENT - ) - - # The Knowledge statement will be the old statement (from neurondm after ingestion), if the disable_overwrite flag is disabled - ingest_statements() - statement_after_edit = ConnectivityStatement.objects.get( - id=statement_to_edit.id) - self.assertNotEqual( - statement_after_edit.knowledge_statement, - NEW_KNOWLEDGE_STATEMENT - ) - @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') def test_population_uris_overwrite_functionality(self, mock_get_statements): """Test that statements with URIs in population_uris list are overwritten regardless of status""" @@ -128,8 +22,48 @@ def test_population_uris_overwrite_functionality(self, mock_get_statements): statement_id_2 = 'http://uri.interlex.org/composer/uris/set/heart/42' mock_statements = [ - self.create_mock_statement_data(statement_id_1, 'liver', '131'), - self.create_mock_statement_data(statement_id_2, 'heart', '42') + { + 'id': statement_id_1, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement for liver 131', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + }, + { + 'id': statement_id_2, + 'label': 'neuron type heart 42', + 'pref_label': 'test connectivity statement for heart 42', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'heart', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } ] mock_get_statements.return_value = mock_statements @@ -180,7 +114,27 @@ def test_population_uris_with_disable_overwrite_true(self, mock_get_statements): statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' mock_statements = [ - self.create_mock_statement_data(statement_id, 'liver', '131') + { + 'id': statement_id, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement for liver 131', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } ] mock_get_statements.return_value = mock_statements @@ -215,7 +169,27 @@ def test_population_uris_empty_set_filters_all(self, mock_get_statements): statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' mock_statements = [ - self.create_mock_statement_data(statement_id, 'liver', '131') + { + 'id': statement_id, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement for liver 131', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } ] mock_get_statements.return_value = mock_statements @@ -233,7 +207,27 @@ def test_population_uris_none_parameter(self, mock_get_statements): statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' mock_statements = [ - self.create_mock_statement_data(statement_id, 'liver', '131') + { + 'id': statement_id, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement for liver 131', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } ] mock_get_statements.return_value = mock_statements @@ -258,9 +252,69 @@ def test_population_uris_filtering_behavior(self, mock_get_statements): statement_id_3 = 'http://uri.interlex.org/composer/uris/set/brain/256' mock_statements = [ - self.create_mock_statement_data(statement_id_1, 'liver', '131'), - self.create_mock_statement_data(statement_id_2, 'heart', '42'), - self.create_mock_statement_data(statement_id_3, 'brain', '256') + { + 'id': statement_id_1, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement for liver 131', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + }, + { + 'id': statement_id_2, + 'label': 'neuron type heart 42', + 'pref_label': 'test connectivity statement for heart 42', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'heart', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + }, + { + 'id': statement_id_3, + 'label': 'neuron type brain 256', + 'pref_label': 'test connectivity statement for brain 256', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'brain', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } ] mock_get_statements.return_value = mock_statements @@ -286,8 +340,48 @@ def test_population_uris_none_processes_all(self, mock_get_statements): statement_id_2 = 'http://uri.interlex.org/composer/uris/set/heart/42' mock_statements = [ - self.create_mock_statement_data(statement_id_1, 'liver', '131'), - self.create_mock_statement_data(statement_id_2, 'heart', '42') + { + 'id': statement_id_1, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement for liver 131', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + }, + { + 'id': statement_id_2, + 'label': 'neuron type heart 42', + 'pref_label': 'test connectivity statement for heart 42', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'heart', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } ] mock_get_statements.return_value = mock_statements @@ -309,8 +403,48 @@ def test_population_uris_none_vs_empty_set_behavior(self, mock_get_statements): statement_id_2 = 'http://uri.interlex.org/composer/uris/set/heart/42' mock_statements = [ - self.create_mock_statement_data(statement_id_1, 'liver', '131'), - self.create_mock_statement_data(statement_id_2, 'heart', '42') + { + 'id': statement_id_1, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement for liver 131', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + }, + { + 'id': statement_id_2, + 'label': 'neuron type heart 42', + 'pref_label': 'test connectivity statement for heart 42', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'heart', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } ] mock_get_statements.return_value = mock_statements @@ -323,3 +457,101 @@ def test_population_uris_none_vs_empty_set_behavior(self, mock_get_statements): # Test 2: Empty set means population file was provided but empty - process no statements ingest_statements(population_uris=set()) self.assertEqual(ConnectivityStatement.objects.count(), 0, "Empty set should process no statements") + + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_state_transitions_skipped_with_population_file(self, mock_get_statements): + """ + Test that state transitions are skipped when population_uris is provided (i.e., when using a population file). + This ensures that existing statement states are preserved during targeted updates. + """ + self.flush_connectivity_statements() + + statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' + + # Create mock statement data with empty anatomical entities and species to avoid validation errors + mock_statement = { + 'id': statement_id, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement for liver 131', + 'origins': NeuronDMOrigin(set()), # Empty set to avoid validation errors + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], # Empty anatomical entities + 'populationset': 'liver', + 'vias': [], # Empty to avoid validation errors + 'species': [], # Empty to avoid validation errors + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], # Empty to avoid validation errors + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } + + mock_statements = [mock_statement] + mock_get_statements.return_value = mock_statements + + # Initial ingestion without population_uris - should create statement in EXPORTED state + ingest_statements(population_uris=None) + + # Verify statement was created in EXPORTED state + statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + initial_state = statement.state + self.assertEqual(initial_state, CSState.EXPORTED, "Statement should be in EXPORTED state initially") + + # Change the state to INVALID using update() to bypass FSM + # We use INVALID because it's a state that can be transitioned from during ingestion + ConnectivityStatement.objects.filter(id=statement.id).update( + state=CSState.INVALID + ) + + # Re-fetch to verify state change + statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual(statement.state, CSState.INVALID, "Statement should be in INVALID state") + + # Update mock data with modified content + mock_statements[0]['pref_label'] = "Updated knowledge statement for testing" + + # Test 1: Ingest with population_uris (simulating population file usage) + # State should remain INVALID (no transition to EXPORTED) + population_uris = {statement_id} + ingest_statements(population_uris=population_uris) + + # Verify state was preserved (not transitioned to EXPORTED) + updated_statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual( + updated_statement.state, + CSState.INVALID, + "State should remain INVALID when population_uris is provided (state transitions skipped)" + ) + + # Verify the content was still updated (just not the state) + self.assertEqual( + updated_statement.knowledge_statement, + "Updated knowledge statement for testing", + "Knowledge statement should be updated even when state transitions are skipped" + ) + + # Test 2: Ingest without population_uris (normal ingestion) + # Now with no validation errors, the state should transition to EXPORTED + mock_statements[0]['pref_label'] = "Another update for testing" + ingest_statements(population_uris=None) + + # Verify state was transitioned to EXPORTED in normal ingestion + final_statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual( + final_statement.state, + CSState.EXPORTED, + "State should transition to EXPORTED when population_uris is None (normal ingestion with no validation errors)" + ) + + # Verify the content was updated + self.assertEqual( + final_statement.knowledge_statement, + "Another update for testing", + "Knowledge statement should be updated in normal ingestion" + ) + diff --git a/applications/composer/backend/tests/test_ingest_statements_e2e.py b/applications/composer/backend/tests/test_ingest_statements_e2e.py new file mode 100644 index 00000000..88699bc6 --- /dev/null +++ b/applications/composer/backend/tests/test_ingest_statements_e2e.py @@ -0,0 +1,95 @@ +from unittest.mock import patch +from composer.services.cs_ingestion.cs_ingestion_services import ingest_statements +from composer.models import ConnectivityStatement +from composer.services.cs_ingestion.neurondm_script import log_error +from composer.services.cs_ingestion.models import NeuronDMOrigin, NeuronDMDestination, NeuronDMVia, ValidationErrors +from composer.enums import CSState +from django.db.models import Q +from django.test import TestCase + + +class TestIngestStatements(TestCase): + # """ + # NOTE: + # This test depends on the directory system of the Scicrunch neurondm - here - https://raw.githubusercontent.com/SciCrunch/NIF-Ontology/neurons/**/*.ttl + # Check more details in neurondm_script.py + # """ + + def flush_connectivity_statements(self): + ConnectivityStatement.objects.all().delete() + + def test_ingestion_with_invalid_imports(self): + self.flush_connectivity_statements() + self.assertEqual(ConnectivityStatement.objects.count(), 0) + ingest_statements(full_imports=['full'], label_imports=['label']) + self.assertEqual(ConnectivityStatement.objects.count(), 0) + + def test_ingestion_with_valid_label_and_invalid_full_imports(self): + ingest_statements( + full_imports=['full'], + label_imports=['apinatomy-neuron-populations'] + ) + self.assertEqual(ConnectivityStatement.objects.count(), 0) + self.flush_connectivity_statements() + + def test_ingestion_with_valid_full_and_invalid_label_imports(self): + ingest_statements(full_imports=['sparc-nlp'], label_imports=['label']) + self.assertNotEqual(ConnectivityStatement.objects.count(), 0) + self.flush_connectivity_statements() + + def test_ingestion_with_valid_imports(self): + ingest_statements( + full_imports=['sparc-nlp'], + label_imports=['apinatomy-neuron-populations'] + ) + self.assertNotEqual(ConnectivityStatement.objects.count(), 0) + self.flush_connectivity_statements() + + def test_ingestion_without_passing_full_imports(self): + # don't pass the full import and it will still work - by utilizing the defaults + self.flush_connectivity_statements() + ingest_statements(label_imports=['apinatomy-neuron-populations']) + self.assertNotEqual(ConnectivityStatement.objects.count(), 0) + + def test_ingestion_without_passing_label_imports(self): + # don't pass the label import and it will still work - by utilizing the defaults + self.flush_connectivity_statements() + ingest_statements(full_imports=['sparc-nlp']) + self.assertNotEqual(ConnectivityStatement.objects.count(), 0) + + def test_disable_overwrite_for_statements(self): + self.flush_connectivity_statements() + ingest_statements(full_imports=['sparc-nlp']) + + NEW_KNOWLEDGE_STATEMENT = "This is a new knowledge statement" + + # Edit the statement that is in EXPORTED or in INVALID state to check if that is overwritten + # Other states are not overwritable anyway + statement_to_edit = ConnectivityStatement.objects.filter( + Q(state=CSState.EXPORTED) | Q(state=CSState.INVALID)).first() + + if not statement_to_edit: + log_error( + "No statement found in EXPORTED or INVALID state to test disable_overwrite") + return + + statement_to_edit.knowledge_statement = NEW_KNOWLEDGE_STATEMENT + statement_to_edit.save() + + # The Knowledge statement will be new updated statement, if the disable_overwrite flag is enabled + ingest_statements(disable_overwrite=True) + statement_after_edit = ConnectivityStatement.objects.get( + id=statement_to_edit.id) + self.assertEqual( + statement_after_edit.knowledge_statement, + NEW_KNOWLEDGE_STATEMENT + ) + + # The Knowledge statement will be the old statement (from neurondm after ingestion), if the disable_overwrite flag is disabled + ingest_statements() + statement_after_edit = ConnectivityStatement.objects.get( + id=statement_to_edit.id) + self.assertNotEqual( + statement_after_edit.knowledge_statement, + NEW_KNOWLEDGE_STATEMENT + ) From 083ddd6b165a6bd447f37dd191cb3af6c88ea9f2 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:24:49 +0200 Subject: [PATCH 15/38] updating zlib1g --- applications/composer/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index 075fe27c..bf15d726 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -37,8 +37,10 @@ ENV MODULE_NAME=backend \ APP_DIR=/usr/src/app RUN apt-get update \ + && apt-get upgrade -y \ && apt-get install -y --no-install-recommends \ nginx supervisor git \ + zlib1g \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} From bce41107ce3166ab0aac6141872d8dbe79eccd5f Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:25:26 +0200 Subject: [PATCH 16/38] updating imagemagick --- applications/composer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index bf15d726..c5a378c6 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -41,6 +41,7 @@ RUN apt-get update \ && apt-get install -y --no-install-recommends \ nginx supervisor git \ zlib1g \ + imagemagick \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} From c63c33eb5bdbad7acbe0015637dd8a0f2d068779 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:27:22 +0200 Subject: [PATCH 17/38] updating libgnutls --- applications/composer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index c5a378c6..30616b71 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -42,6 +42,7 @@ RUN apt-get update \ nginx supervisor git \ zlib1g \ imagemagick \ + libgnutls30 \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} From 5e2f4b15832c0f745e1919922bf7eadaad61c11e Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:27:57 +0200 Subject: [PATCH 18/38] updating bluez --- applications/composer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index 30616b71..022fb120 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -43,6 +43,7 @@ RUN apt-get update \ zlib1g \ imagemagick \ libgnutls30 \ + bluez \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} From fe988cf441d489f058230fd96aa4ad5b8e311cb3 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:29:02 +0200 Subject: [PATCH 19/38] updating libxml2 --- applications/composer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index 022fb120..05074eea 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -44,6 +44,7 @@ RUN apt-get update \ imagemagick \ libgnutls30 \ bluez \ + libxml2 \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} From 5c3074d6d1bf39bf4f982761a9f3d934351eb52c Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:30:45 +0200 Subject: [PATCH 20/38] updating starlette --- applications/composer/backend/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/composer/backend/requirements.txt b/applications/composer/backend/requirements.txt index cbef7908..c74c60bd 100644 --- a/applications/composer/backend/requirements.txt +++ b/applications/composer/backend/requirements.txt @@ -1,6 +1,7 @@ packaging==21.3 Django==4.1.13 uvicorn==0.20.0 +starlette>=0.41.3 psycopg2-binary==2.9.5 djangorestframework==3.14.0 django-filter==22.1 From ccf29adda2aba82cb994f8226990003e5e643c7a Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:31:45 +0200 Subject: [PATCH 21/38] updating tiff --- applications/composer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index 05074eea..f581384f 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -45,6 +45,7 @@ RUN apt-get update \ libgnutls30 \ bluez \ libxml2 \ + libtiff5 \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} From 7671b68e32260d6b6eccfedbd45b5be8a0a8ea89 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:32:49 +0200 Subject: [PATCH 22/38] updating pillow --- applications/composer/backend/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/composer/backend/requirements.txt b/applications/composer/backend/requirements.txt index c74c60bd..2c03453b 100644 --- a/applications/composer/backend/requirements.txt +++ b/applications/composer/backend/requirements.txt @@ -2,6 +2,7 @@ packaging==21.3 Django==4.1.13 uvicorn==0.20.0 starlette>=0.41.3 +pillow>=11.0.0 psycopg2-binary==2.9.5 djangorestframework==3.14.0 django-filter==22.1 From e2db9d63080853c892aa41b95418500935f48e40 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:33:49 +0200 Subject: [PATCH 23/38] updating libxsl --- applications/composer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index f581384f..6424a2c6 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -46,6 +46,7 @@ RUN apt-get update \ bluez \ libxml2 \ libtiff5 \ + libxslt1.1 \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} From bb05c85533e1cf8c7143b4afd909200451f96e08 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:35:16 +0200 Subject: [PATCH 24/38] updating django and some more system libs --- applications/composer/Dockerfile | 1 + applications/composer/backend/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index 6424a2c6..02474658 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -47,6 +47,7 @@ RUN apt-get update \ libxml2 \ libtiff5 \ libxslt1.1 \ + libexpat1 \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} diff --git a/applications/composer/backend/requirements.txt b/applications/composer/backend/requirements.txt index 2c03453b..49a9fc85 100644 --- a/applications/composer/backend/requirements.txt +++ b/applications/composer/backend/requirements.txt @@ -1,5 +1,5 @@ packaging==21.3 -Django==4.1.13 +Django==4.2.17 uvicorn==0.20.0 starlette>=0.41.3 pillow>=11.0.0 From 33c3e336d12c2e3aad07cf308c18939c7906f600 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Fri, 3 Oct 2025 11:36:17 +0200 Subject: [PATCH 25/38] updating perl --- applications/composer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index 02474658..164c1a8e 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -48,6 +48,7 @@ RUN apt-get update \ libtiff5 \ libxslt1.1 \ libexpat1 \ + perl \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} From a7310278fad18fbd0b366b76aa7b800cf121774d Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Mon, 6 Oct 2025 17:11:59 +0200 Subject: [PATCH 26/38] fixing libtiff with new package --- applications/composer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index 164c1a8e..9b8e50b1 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -45,7 +45,7 @@ RUN apt-get update \ libgnutls30 \ bluez \ libxml2 \ - libtiff5 \ + libtiff6 \ libxslt1.1 \ libexpat1 \ perl \ From af02cd93fe8f89ef3cc52004917ea535f69dc0da Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Mon, 6 Oct 2025 16:39:40 +0100 Subject: [PATCH 27/38] SCKAN-443 feat: Rollback transition skip --- .../composer/backend/composer/models.py | 56 ++++++++++++---- .../cs_ingestion/cs_ingestion_services.py | 6 +- .../cs_ingestion/helpers/notes_helper.py | 10 +++ .../cs_ingestion/helpers/statement_helper.py | 46 +++++++------ .../backend/tests/test_ingest_statements.py | 64 ++++++++++++++----- 5 files changed, 129 insertions(+), 53 deletions(-) diff --git a/applications/composer/backend/composer/models.py b/applications/composer/backend/composer/models.py index c5351036..863a4f68 100644 --- a/applications/composer/backend/composer/models.py +++ b/applications/composer/backend/composer/models.py @@ -806,17 +806,12 @@ def revise(self, *args, **kwargs): def npo_approved(self, *args, **kwargs): ... - @transition( - field=state, - source=[CSState.NPO_APPROVED, CSState.INVALID], - target=CSState.EXPORTED, - conditions=[ - ConnectivityStatementStateService.is_valid, - ConnectivityStatementStateService.has_populationset, - ], - permission=ConnectivityStatementStateService.has_permission_to_transition_to_exported, - ) - def exported(self, *args, **kwargs): + def _perform_export_logic(self): + """ + Common logic for exporting a connectivity statement. + This method handles population index assignment, reference URI creation, + and marking the statement as exported. + """ with transaction.atomic(): update_fields = ["has_statement_been_exported"] # Only update population_index if the statement hasn't been exported yet @@ -845,6 +840,45 @@ def exported(self, *args, **kwargs): self.has_statement_been_exported = True self.save(update_fields=update_fields) + @transition( + field=state, + source=[CSState.NPO_APPROVED, CSState.INVALID], + target=CSState.EXPORTED, + conditions=[ + ConnectivityStatementStateService.is_valid, + ConnectivityStatementStateService.has_populationset, + ], + permission=ConnectivityStatementStateService.has_permission_to_transition_to_exported, + ) + def exported(self, *args, **kwargs): + self._perform_export_logic() + + @transition( + field=state, + source=[ + CSState.DRAFT, + CSState.COMPOSE_NOW, + CSState.IN_PROGRESS, + CSState.TO_BE_REVIEWED, + CSState.REVISE, + CSState.REJECTED, + CSState.NPO_APPROVED, + CSState.INVALID, + ], + target=CSState.EXPORTED, + conditions=[ + ConnectivityStatementStateService.is_valid, + ConnectivityStatementStateService.has_populationset, + ], + permission=ConnectivityStatementStateService.has_permission_to_transition_to_exported, + ) + def system_exported(self, *args, **kwargs): + """ + Transition to exported state that can be called by system users from any state. + This is typically used during ingestion with population files. + """ + self._perform_export_logic() + @transition( field=state, source=[ diff --git a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py index 64d12eff..4a5e6dcb 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py +++ b/applications/composer/backend/composer/services/cs_ingestion/cs_ingestion_services.py @@ -48,17 +48,13 @@ def ingest_statements( overridable_and_new_statements, update_anatomical_entities ) - # When population_uris is provided (i.e., a population file was used), - # skip state transitions to preserve existing statement states - skip_state_transitions = population_uris is not None - successful_transaction = True try: with transaction.atomic(): for statement in statements: sentence, _ = get_or_create_sentence(statement) create_or_update_connectivity_statement( - statement, sentence, update_anatomical_entities, logger_service, skip_state_transitions + statement, sentence, update_anatomical_entities, logger_service, population_uris ) update_forward_connections(statements) diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py index a8079e85..bcab6fa2 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py @@ -32,3 +32,13 @@ def do_transition_to_exported(connectivity_statement: ConnectivityStatement): system_user = User.objects.get(username="system") connectivity_statement.exported(by=system_user) connectivity_statement.save() + + +def do_system_transition_to_exported(connectivity_statement: ConnectivityStatement): + """ + Perform system_exported transition - allows transitioning to exported from any state. + This is used during ingestion with population files. + """ + system_user = User.objects.get(username="system") + connectivity_statement.system_exported(by=system_user) + connectivity_statement.save() diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py index d994dcf1..8e11d033 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py @@ -46,6 +46,7 @@ create_invalid_note, add_ingestion_system_note, do_transition_to_exported, + do_system_transition_to_exported, ) from composer.services.cs_ingestion.models import ( LoggableAnomaly, @@ -59,7 +60,7 @@ def create_or_update_connectivity_statement( sentence: Sentence, update_anatomical_entities: bool, logger_service: LoggerService, - skip_state_transitions: bool = False, + population_uris: set = None, ) -> Tuple[ConnectivityStatement, bool]: """ Create or update a connectivity statement from ingested data. @@ -69,9 +70,8 @@ def create_or_update_connectivity_statement( sentence: The associated sentence object update_anatomical_entities: Whether to update anatomical entity relationships logger_service: Service for logging anomalies - skip_state_transitions: When True, state transitions are skipped. This is used - when a population file is provided to preserve existing - statement states during targeted updates. + population_uris: Set of URIs from population file. When provided, the system_exported + transition is used to allow state changes from any state. Returns: Tuple of (ConnectivityStatement, created) where created is True if new @@ -111,23 +111,29 @@ def create_or_update_connectivity_statement( validation_errors = statement.get(VALIDATION_ERRORS, ValidationErrors()) # State transitions: Handle validation errors and state updates - # When skip_state_transitions is True (population file provided), we preserve - # the existing statement state instead of forcing transitions - if not skip_state_transitions: - if validation_errors.has_errors(): - error_message = validation_errors.to_string() - if connectivity_statement.state != CSState.INVALID: - do_transition_to_invalid_with_note(connectivity_statement, error_message) - else: - create_invalid_note(connectivity_statement, error_message) + # When population_uris is provided (population file used), use system_exported + # transition to allow state changes from any state + if validation_errors.has_errors(): + error_message = validation_errors.to_string() + if connectivity_statement.state != CSState.INVALID: + do_transition_to_invalid_with_note(connectivity_statement, error_message) else: - if ( - connectivity_statement.state != CSState.EXPORTED - and ConnectivityStatementStateService.has_populationset( - connectivity_statement=connectivity_statement - ) - ): - do_transition_to_exported(connectivity_statement) + create_invalid_note(connectivity_statement, error_message) + else: + # Statement is valid + if ConnectivityStatementStateService.has_populationset( + connectivity_statement=connectivity_statement + ): + # Use system_exported transition when population_uris is provided + # This allows transitioning from any state (e.g., TO_BE_REVIEWED -> EXPORTED) + if population_uris is not None: + if connectivity_statement.state != CSState.EXPORTED: + do_system_transition_to_exported(connectivity_statement) + else: + # Normal ingestion: only transition if not already exported + if connectivity_statement.state != CSState.EXPORTED: + do_transition_to_exported(connectivity_statement) + for alert_data in statement.get(STATEMENT_ALERTS, []): try: diff --git a/applications/composer/backend/tests/test_ingest_statements.py b/applications/composer/backend/tests/test_ingest_statements.py index 2a7f829a..1475137b 100644 --- a/applications/composer/backend/tests/test_ingest_statements.py +++ b/applications/composer/backend/tests/test_ingest_statements.py @@ -461,8 +461,12 @@ def test_population_uris_none_vs_empty_set_behavior(self, mock_get_statements): @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') def test_state_transitions_skipped_with_population_file(self, mock_get_statements): """ - Test that state transitions are skipped when population_uris is provided (i.e., when using a population file). - This ensures that existing statement states are preserved during targeted updates. + Test that statements can transition from any state to EXPORTED or INVALID during ingestion + with population_uris (i.e., when using a population file). + + When population_uris is provided and disable_overwrite is False, statements in the population + file can be overwritten and transitioned from any state (e.g., TO_BE_REVIEWED) to EXPORTED + or INVALID based on validation results. """ self.flush_connectivity_statements() @@ -502,42 +506,68 @@ def test_state_transitions_skipped_with_population_file(self, mock_get_statement initial_state = statement.state self.assertEqual(initial_state, CSState.EXPORTED, "Statement should be in EXPORTED state initially") - # Change the state to INVALID using update() to bypass FSM - # We use INVALID because it's a state that can be transitioned from during ingestion + # Change the state to TO_BE_REVIEWED using update() to bypass FSM + # This simulates a statement that was manually reviewed and is now awaiting approval ConnectivityStatement.objects.filter(id=statement.id).update( - state=CSState.INVALID + state=CSState.TO_BE_REVIEWED ) # Re-fetch to verify state change statement = ConnectivityStatement.objects.get(reference_uri=statement_id) - self.assertEqual(statement.state, CSState.INVALID, "Statement should be in INVALID state") + self.assertEqual(statement.state, CSState.TO_BE_REVIEWED, "Statement should be in TO_BE_REVIEWED state") # Update mock data with modified content mock_statements[0]['pref_label'] = "Updated knowledge statement for testing" # Test 1: Ingest with population_uris (simulating population file usage) - # State should remain INVALID (no transition to EXPORTED) + # State should transition from TO_BE_REVIEWED to EXPORTED using system_exported transition population_uris = {statement_id} ingest_statements(population_uris=population_uris) - # Verify state was preserved (not transitioned to EXPORTED) + # Verify state was transitioned to EXPORTED (using system_exported transition) updated_statement = ConnectivityStatement.objects.get(reference_uri=statement_id) self.assertEqual( updated_statement.state, - CSState.INVALID, - "State should remain INVALID when population_uris is provided (state transitions skipped)" + CSState.EXPORTED, + "State should transition to EXPORTED when population_uris is provided (using system_exported transition)" ) - # Verify the content was still updated (just not the state) + # Verify the content was updated self.assertEqual( updated_statement.knowledge_statement, "Updated knowledge statement for testing", - "Knowledge statement should be updated even when state transitions are skipped" + "Knowledge statement should be updated when using population file" + ) + + # Test 2: Test transition to INVALID with population file when validation errors exist + # Add validation errors to the mock data + validation_errors_with_errors = ValidationErrors() + validation_errors_with_errors.entities.add("UBERON:9999999") + mock_statements[0]['validation_errors'] = validation_errors_with_errors + mock_statements[0]['pref_label'] = "Statement with validation errors" + + # Change state back to TO_BE_REVIEWED + ConnectivityStatement.objects.filter(id=statement.id).update( + state=CSState.TO_BE_REVIEWED ) - # Test 2: Ingest without population_uris (normal ingestion) - # Now with no validation errors, the state should transition to EXPORTED - mock_statements[0]['pref_label'] = "Another update for testing" + # Ingest with population_uris and validation errors + ingest_statements(population_uris=population_uris) + + # Verify state transitioned to INVALID due to validation errors + invalid_statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual( + invalid_statement.state, + CSState.INVALID, + "State should transition to INVALID when validation errors exist, even from TO_BE_REVIEWED state" + ) + + # Test 3: Verify normal ingestion (without population_uris) also works correctly + # Remove validation errors + mock_statements[0]['validation_errors'] = ValidationErrors() + mock_statements[0]['pref_label'] = "Another update for normal ingestion" + + # Normal ingestion should also transition to EXPORTED ingest_statements(population_uris=None) # Verify state was transitioned to EXPORTED in normal ingestion @@ -545,13 +575,13 @@ def test_state_transitions_skipped_with_population_file(self, mock_get_statement self.assertEqual( final_statement.state, CSState.EXPORTED, - "State should transition to EXPORTED when population_uris is None (normal ingestion with no validation errors)" + "State should transition to EXPORTED in normal ingestion (without population_uris)" ) # Verify the content was updated self.assertEqual( final_statement.knowledge_statement, - "Another update for testing", + "Another update for normal ingestion", "Knowledge statement should be updated in normal ingestion" ) From 47b778f0d1cb1d134ea146e0446e0c439254cc4a Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Mon, 6 Oct 2025 16:57:23 +0100 Subject: [PATCH 28/38] SCKAN-443 feat: Improve error message --- .../cs_ingestion/helpers/notes_helper.py | 16 +++- .../cs_ingestion/helpers/statement_helper.py | 26 +++-- .../backend/tests/test_ingest_statements.py | 96 ++++++++++++++++++- 3 files changed, 120 insertions(+), 18 deletions(-) diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py index bcab6fa2..6c2d1974 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py @@ -34,11 +34,21 @@ def do_transition_to_exported(connectivity_statement: ConnectivityStatement): connectivity_statement.save() -def do_system_transition_to_exported(connectivity_statement: ConnectivityStatement): +def do_system_transition_to_exported(connectivity_statement: ConnectivityStatement) -> tuple[bool, str]: """ Perform system_exported transition - allows transitioning to exported from any state. This is used during ingestion with population files. + + Returns: + tuple: (success: bool, error_message: str) - success is True if transition succeeded, + False if it failed. error_message contains the reason for failure. """ system_user = User.objects.get(username="system") - connectivity_statement.system_exported(by=system_user) - connectivity_statement.save() + try: + connectivity_statement.system_exported(by=system_user) + connectivity_statement.save() + return True, "" + except Exception as e: + # Transition failed due to FSM conditions not being met + error_message = f"Could not transition to EXPORTED state during ingestion. Reason: {str(e)}. " + return False, error_message diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py index 8e11d033..69046ab0 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py @@ -120,20 +120,18 @@ def create_or_update_connectivity_statement( else: create_invalid_note(connectivity_statement, error_message) else: - # Statement is valid - if ConnectivityStatementStateService.has_populationset( - connectivity_statement=connectivity_statement - ): - # Use system_exported transition when population_uris is provided - # This allows transitioning from any state (e.g., TO_BE_REVIEWED -> EXPORTED) - if population_uris is not None: - if connectivity_statement.state != CSState.EXPORTED: - do_system_transition_to_exported(connectivity_statement) - else: - # Normal ingestion: only transition if not already exported - if connectivity_statement.state != CSState.EXPORTED: - do_transition_to_exported(connectivity_statement) - + # Statement is valid - attempt transition to EXPORTED + # Use system_exported transition when population_uris is provided + # This allows transitioning from any state (e.g., TO_BE_REVIEWED -> EXPORTED) + if population_uris is not None: + if connectivity_statement.state != CSState.EXPORTED: + transition_success, error_message = do_system_transition_to_exported(connectivity_statement) + if not transition_success: + create_invalid_note(connectivity_statement, error_message) + else: + # Normal ingestion: only transition if not already exported + if connectivity_statement.state != CSState.EXPORTED: + do_transition_to_exported(connectivity_statement) for alert_data in statement.get(STATEMENT_ALERTS, []): try: diff --git a/applications/composer/backend/tests/test_ingest_statements.py b/applications/composer/backend/tests/test_ingest_statements.py index 1475137b..9fb72a71 100644 --- a/applications/composer/backend/tests/test_ingest_statements.py +++ b/applications/composer/backend/tests/test_ingest_statements.py @@ -459,7 +459,7 @@ def test_population_uris_none_vs_empty_set_behavior(self, mock_get_statements): self.assertEqual(ConnectivityStatement.objects.count(), 0, "Empty set should process no statements") @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') - def test_state_transitions_skipped_with_population_file(self, mock_get_statements): + def test_state_transitions_with_population_file(self, mock_get_statements): """ Test that statements can transition from any state to EXPORTED or INVALID during ingestion with population_uris (i.e., when using a population file). @@ -585,3 +585,97 @@ def test_state_transitions_skipped_with_population_file(self, mock_get_statement "Knowledge statement should be updated in normal ingestion" ) + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_transition_error_handling_creates_note(self, mock_get_statements): + """ + Test that when a transition fails due to FSM conditions not being met, + a note is created explaining the failure. This is a unit test that directly + tests the error handling in do_system_transition_to_exported. + """ + from composer.models import Note + from composer.services.cs_ingestion.helpers.notes_helper import do_system_transition_to_exported + + self.flush_connectivity_statements() + + statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' + + # Create a statement with proper population first + mock_statement = { + 'id': statement_id, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } + + mock_statements = [mock_statement] + mock_get_statements.return_value = mock_statements + + # Create the statement + ingest_statements(population_uris=None) + + statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual(statement.state, CSState.EXPORTED) + + # Manually set to a state and remove population to simulate FSM condition failure + ConnectivityStatement.objects.filter(id=statement.id).update( + population=None, + state=CSState.TO_BE_REVIEWED + ) + + statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertIsNone(statement.population) + + # Clear any existing notes + Note.objects.filter(connectivity_statement=statement).delete() + + # Directly call the transition function - this should fail and return error message + success, error_message = do_system_transition_to_exported(statement) + + # Verify transition failed + self.assertFalse(success, "Transition should fail when population is None") + self.assertIn("Could not transition to EXPORTED", error_message) + + # Manually create note using create_invalid_note (simulating what statement_helper does) + from composer.services.cs_ingestion.helpers.notes_helper import create_invalid_note + create_invalid_note(statement, error_message) + + # Verify statement state unchanged (re-fetch from database) + statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual( + statement.state, + CSState.TO_BE_REVIEWED, + "State should remain unchanged when transition fails" + ) + + # Verify a note was created + notes = Note.objects.filter( + connectivity_statement=statement, + note__icontains="Could not transition to EXPORTED" + ) + + self.assertEqual( + notes.count(), + 1, + "A note should be created when transition fails due to FSM conditions" + ) + + # Verify note content mentions the issue + note = notes.first() + self.assertIn("EXPORTED", note.note) + + From 0839c78ada751ad2e14910b8f5c14fc035a1604b Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Mon, 6 Oct 2025 17:21:27 +0100 Subject: [PATCH 29/38] SCKAN-443 feat: Add transition to invalid on export transition failure --- .../services/cs_ingestion/helpers/statement_helper.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py index 69046ab0..94318a6e 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/statement_helper.py @@ -127,7 +127,11 @@ def create_or_update_connectivity_statement( if connectivity_statement.state != CSState.EXPORTED: transition_success, error_message = do_system_transition_to_exported(connectivity_statement) if not transition_success: - create_invalid_note(connectivity_statement, error_message) + # Transition to EXPORTED failed - move to INVALID state + if connectivity_statement.state != CSState.INVALID: + do_transition_to_invalid_with_note(connectivity_statement, error_message) + else: + create_invalid_note(connectivity_statement, error_message) else: # Normal ingestion: only transition if not already exported if connectivity_statement.state != CSState.EXPORTED: From cef27ce5e2ea8c2918d00fc54003403a95ee29d7 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Mon, 6 Oct 2025 18:24:57 +0200 Subject: [PATCH 30/38] moving up some packages --- applications/composer/Dockerfile | 1 + applications/composer/backend/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index 9b8e50b1..9e731d25 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -41,6 +41,7 @@ RUN apt-get update \ && apt-get install -y --no-install-recommends \ nginx supervisor git \ zlib1g \ + zlib1g-dev \ imagemagick \ libgnutls30 \ bluez \ diff --git a/applications/composer/backend/requirements.txt b/applications/composer/backend/requirements.txt index 49a9fc85..c84167a8 100644 --- a/applications/composer/backend/requirements.txt +++ b/applications/composer/backend/requirements.txt @@ -1,5 +1,5 @@ packaging==21.3 -Django==4.2.17 +Django==4.2.24 uvicorn==0.20.0 starlette>=0.41.3 pillow>=11.0.0 From e8ef5cc39b9b1635dd1c9d97e4ce89d05a623573 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Mon, 6 Oct 2025 17:30:36 +0100 Subject: [PATCH 31/38] SCKAN-443 chore: Update ingestement tests --- .../backend/tests/test_ingest_statements.py | 178 ++++++++++++++---- 1 file changed, 141 insertions(+), 37 deletions(-) diff --git a/applications/composer/backend/tests/test_ingest_statements.py b/applications/composer/backend/tests/test_ingest_statements.py index 9fb72a71..3aca2982 100644 --- a/applications/composer/backend/tests/test_ingest_statements.py +++ b/applications/composer/backend/tests/test_ingest_statements.py @@ -588,22 +588,25 @@ def test_state_transitions_with_population_file(self, mock_get_statements): @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') def test_transition_error_handling_creates_note(self, mock_get_statements): """ - Test that when a transition fails due to FSM conditions not being met, - a note is created explaining the failure. This is a unit test that directly - tests the error handling in do_system_transition_to_exported. + Test that when a statement with validation errors is ingested with population_uris, + it transitions to INVALID and a note is created explaining the failure. + + This verifies the error handling path when validation errors prevent export. """ from composer.models import Note - from composer.services.cs_ingestion.helpers.notes_helper import do_system_transition_to_exported self.flush_connectivity_statements() statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' - # Create a statement with proper population first + # Create a statement with validation errors + validation_errors = ValidationErrors() + validation_errors.entities.add("UBERON:9999999") # Invalid entity + mock_statement = { 'id': statement_id, 'label': 'neuron type liver 131', - 'pref_label': 'test connectivity statement', + 'pref_label': 'test connectivity statement with errors', 'origins': NeuronDMOrigin(set()), 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], 'populationset': 'liver', @@ -618,64 +621,165 @@ def test_transition_error_handling_creates_note(self, mock_get_statements): 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], 'sentence_number': [], 'note_alert': [], - 'validation_errors': ValidationErrors(), + 'validation_errors': validation_errors, 'statement_alerts': [] } mock_statements = [mock_statement] mock_get_statements.return_value = mock_statements - # Create the statement + # Ingest with population_uris - statement should go to INVALID due to validation errors + population_uris = {statement_id} + ingest_statements(population_uris=population_uris) + + # Verify statement was created in INVALID state + statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + self.assertEqual( + statement.state, + CSState.INVALID, + "Statement with validation errors should be in INVALID state" + ) + + # Verify notes were created explaining the validation errors + notes = Note.objects.filter( + connectivity_statement=statement + ) + + self.assertGreater( + notes.count(), + 0, + "Notes should be created explaining validation errors" + ) + + # Check that at least one note mentions the validation issue + note_texts = [note.note for note in notes] + has_validation_note = any( + "UBERON:9999999" in text or "Invalidated" in text + for text in note_texts + ) + self.assertTrue( + has_validation_note, + "At least one note should mention the validation error or invalidation" + ) + + @patch('composer.services.cs_ingestion.cs_ingestion_services.get_statements_from_neurondm') + def test_statement_moves_to_invalid_when_export_fails_with_population_file(self, mock_get_statements): + """ + Test that when a statement cannot transition to EXPORTED during ingestion with + population_uris (e.g., due to failing FSM conditions like is_valid), + it transitions to INVALID state with a note explaining the failure. + + This scenario can occur when a statement has forward_connection validation issues. + """ + from composer.models import Note + + self.flush_connectivity_statements() + + statement_id = 'http://uri.interlex.org/composer/uris/set/liver/131' + forward_conn_id = 'http://uri.interlex.org/composer/uris/set/liver/999' + + # Create two mock statements - the second one will be referenced by the first + # but won't have matching anatomical entities, causing is_valid to fail + mock_statements = [ + { + 'id': statement_id, + 'label': 'neuron type liver 131', + 'pref_label': 'test connectivity statement', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [forward_conn_id], # References the second statement + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + }, + { + 'id': forward_conn_id, + 'label': 'neuron type liver 999', + 'pref_label': 'forward connectivity statement', + 'origins': NeuronDMOrigin(set()), + 'destinations': [NeuronDMDestination(set(), set(), 'AXON-T')], + 'populationset': 'liver', + 'vias': [], + 'species': [], + 'sex': [], + 'circuit_type': [], + 'circuit_role': [], + 'phenotype': [], + 'other_phenotypes': [], + 'forward_connection': [], + 'provenance': ['http://dx.doi.org/10.1126/sciadv.abg5733'], + 'sentence_number': [], + 'note_alert': [], + 'validation_errors': ValidationErrors(), + 'statement_alerts': [] + } + ] + + mock_get_statements.return_value = mock_statements + + # Initial ingestion to create both statements ingest_statements(population_uris=None) + # Verify both statements were created in EXPORTED state statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + forward_statement = ConnectivityStatement.objects.get(reference_uri=forward_conn_id) self.assertEqual(statement.state, CSState.EXPORTED) + self.assertEqual(forward_statement.state, CSState.EXPORTED) - # Manually set to a state and remove population to simulate FSM condition failure + # Change the first statement to TO_BE_REVIEWED state ConnectivityStatement.objects.filter(id=statement.id).update( - population=None, state=CSState.TO_BE_REVIEWED ) - statement = ConnectivityStatement.objects.get(reference_uri=statement_id) - self.assertIsNone(statement.population) - - # Clear any existing notes + # Clear any existing notes from the first ingestion Note.objects.filter(connectivity_statement=statement).delete() - # Directly call the transition function - this should fail and return error message - success, error_message = do_system_transition_to_exported(statement) - - # Verify transition failed - self.assertFalse(success, "Transition should fail when population is None") - self.assertIn("Could not transition to EXPORTED", error_message) - - # Manually create note using create_invalid_note (simulating what statement_helper does) - from composer.services.cs_ingestion.helpers.notes_helper import create_invalid_note - create_invalid_note(statement, error_message) + # Re-ingest using population_uris (simulating population file ingestion) + # The statement with forward_connection will fail is_valid condition + # and should transition to INVALID + population_uris = {statement_id} + ingest_statements(population_uris=population_uris) - # Verify statement state unchanged (re-fetch from database) - statement = ConnectivityStatement.objects.get(reference_uri=statement_id) + # Verify the statement transitioned to INVALID + result_stmt = ConnectivityStatement.objects.get(reference_uri=statement_id) self.assertEqual( - statement.state, - CSState.TO_BE_REVIEWED, - "State should remain unchanged when transition fails" + result_stmt.state, + CSState.INVALID, + "Statement should transition to INVALID when export fails due to is_valid condition" ) - # Verify a note was created + # Verify notes were created notes = Note.objects.filter( - connectivity_statement=statement, + connectivity_statement=result_stmt, note__icontains="Could not transition to EXPORTED" ) - self.assertEqual( + self.assertGreater( notes.count(), - 1, - "A note should be created when transition fails due to FSM conditions" + 0, + "A note should be created explaining the transition failure" ) - # Verify note content mentions the issue - note = notes.first() - self.assertIn("EXPORTED", note.note) + # Also check for invalidation note + invalidated_notes = Note.objects.filter( + connectivity_statement=result_stmt, + note__icontains="Invalidated" + ) + + self.assertGreater( + invalidated_notes.count(), + 0, + "An 'Invalidated' note should be created when statement moves to INVALID" + ) From 3e44e08a9c382d1ede656a36afd29e3bda6b5475 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Mon, 6 Oct 2025 17:32:09 +0100 Subject: [PATCH 32/38] SCKAN-443 chore: Remove trailing whitespace --- .../composer/services/cs_ingestion/helpers/notes_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py index 6c2d1974..6053a120 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/notes_helper.py @@ -50,5 +50,5 @@ def do_system_transition_to_exported(connectivity_statement: ConnectivityStateme return True, "" except Exception as e: # Transition failed due to FSM conditions not being met - error_message = f"Could not transition to EXPORTED state during ingestion. Reason: {str(e)}. " + error_message = f"Could not transition to EXPORTED state during ingestion. Reason: {str(e)}." return False, error_message From 261d3c65dbe852bd343e2821c24d9a9b65cdcb34 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Mon, 6 Oct 2025 19:05:06 +0200 Subject: [PATCH 33/38] another upgrade --- applications/composer/Dockerfile | 3 ++- applications/composer/backend/requirements.txt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/applications/composer/Dockerfile b/applications/composer/Dockerfile index 9e731d25..72e5d825 100644 --- a/applications/composer/Dockerfile +++ b/applications/composer/Dockerfile @@ -38,7 +38,7 @@ ENV MODULE_NAME=backend \ RUN apt-get update \ && apt-get upgrade -y \ - && apt-get install -y --no-install-recommends \ + && apt-get install -y --no-install-recommends --allow-downgrades \ nginx supervisor git \ zlib1g \ zlib1g-dev \ @@ -50,6 +50,7 @@ RUN apt-get update \ libxslt1.1 \ libexpat1 \ perl \ + && apt-get install --only-upgrade zlib1g zlib1g-dev -y \ && rm -rf /var/lib/apt/lists/* WORKDIR ${APP_DIR} diff --git a/applications/composer/backend/requirements.txt b/applications/composer/backend/requirements.txt index c84167a8..3a8e248e 100644 --- a/applications/composer/backend/requirements.txt +++ b/applications/composer/backend/requirements.txt @@ -1,5 +1,5 @@ packaging==21.3 -Django==4.2.24 +Django==4.2.25 uvicorn==0.20.0 starlette>=0.41.3 pillow>=11.0.0 From 310af57593457249a09bee2c04eb6cacf098e652 Mon Sep 17 00:00:00 2001 From: ddelpiano Date: Mon, 6 Oct 2025 23:14:25 +0200 Subject: [PATCH 34/38] increasing field size --- ...tence_external_ref_alter_sentence_pmcid.py | 28 + .../composer/backend/composer/models.py | 4 +- .../composer/backend/ingested_log.csv | 351 - .../backend/ingestion_anomalies_log.csv | 6556 ----------------- 4 files changed, 30 insertions(+), 6909 deletions(-) create mode 100644 applications/composer/backend/composer/migrations/0091_alter_sentence_external_ref_alter_sentence_pmcid.py delete mode 100644 applications/composer/backend/ingested_log.csv delete mode 100644 applications/composer/backend/ingestion_anomalies_log.csv diff --git a/applications/composer/backend/composer/migrations/0091_alter_sentence_external_ref_alter_sentence_pmcid.py b/applications/composer/backend/composer/migrations/0091_alter_sentence_external_ref_alter_sentence_pmcid.py new file mode 100644 index 00000000..b257247b --- /dev/null +++ b/applications/composer/backend/composer/migrations/0091_alter_sentence_external_ref_alter_sentence_pmcid.py @@ -0,0 +1,28 @@ +# Generated by Django 4.2.25 on 2025-10-06 21:11 + +import composer.models +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("composer", "0090_alter_provenance_uri"), + ] + + operations = [ + migrations.AlterField( + model_name="sentence", + name="external_ref", + field=models.CharField( + blank=True, db_index=True, max_length=100, null=True + ), + ), + migrations.AlterField( + model_name="sentence", + name="pmcid", + field=composer.models.PmcIdField( + blank=True, db_index=True, max_length=100, null=True + ), + ), + ] diff --git a/applications/composer/backend/composer/models.py b/applications/composer/backend/composer/models.py index 863a4f68..49e61047 100644 --- a/applications/composer/backend/composer/models.py +++ b/applications/composer/backend/composer/models.py @@ -507,10 +507,10 @@ class Sentence(models.Model, BulkActionMixin): title = models.CharField(max_length=200, db_index=True) text = models.TextField() - external_ref = models.CharField(max_length=20, db_index=True, null=True, blank=True) + external_ref = models.CharField(max_length=100, db_index=True, null=True, blank=True) state = FSMField(default=SentenceState.OPEN, protected=True) pmid = PmIdField(db_index=True, null=True, blank=True) - pmcid = PmcIdField(max_length=20, db_index=True, null=True, blank=True) + pmcid = PmcIdField(max_length=100, db_index=True, null=True, blank=True) doi = DoiField(max_length=100, db_index=True, null=True, blank=True) batch_name = models.CharField(max_length=100, null=True, blank=True, db_index=True) tags = models.ManyToManyField(Tag, verbose_name="Tags", blank=True) diff --git a/applications/composer/backend/ingested_log.csv b/applications/composer/backend/ingested_log.csv deleted file mode 100644 index 00480c6f..00000000 --- a/applications/composer/backend/ingested_log.csv +++ /dev/null @@ -1,351 +0,0 @@ -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,neuron type liver 131,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793082, http://uri.interlex.org/base/ilx_0794730, http://uri.interlex.org/base/ilx_0795008, http://uri.interlex.org/base/ilx_0795017, http://uri.interlex.org/base/ilx_0795013; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,neuron type liver 132,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795015, http://purl.obolibrary.org/obo/CL_1000488, http://uri.interlex.org/base/ilx_0795009, http://purl.obolibrary.org/obo/CL_0009094, http://uri.interlex.org/base/ilx_0793082, http://uri.interlex.org/base/ilx_0794730; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,neuron type mmset1 11,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793618, http://uri.interlex.org/base/ilx_0793699, http://uri.interlex.org/base/ilx_0793336, http://uri.interlex.org/base/ilx_0786272, http://uri.interlex.org/base/ilx_0793617, http://uri.interlex.org/base/ilx_0786141, http://uri.interlex.org/base/ilx_0793335, http://purl.obolibrary.org/obo/UBERON_0002441, http://uri.interlex.org/base/ilx_0793208, http://uri.interlex.org/base/ilx_0793619, http://uri.interlex.org/base/ilx_0786722, http://uri.interlex.org/base/ilx_0793212, http://uri.interlex.org/base/ilx_0793210, http://uri.interlex.org/base/ilx_0793211, http://uri.interlex.org/base/ilx_0793697, http://uri.interlex.org/base/ilx_0786228, http://uri.interlex.org/base/ilx_0793701, http://uri.interlex.org/base/ilx_0793698, http://uri.interlex.org/base/ilx_0793700, http://uri.interlex.org/base/ilx_0793209; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,neuron type liver 130,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793813, http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793815, http://uri.interlex.org/base/ilx_0793082, http://uri.interlex.org/base/ilx_0794730, http://purl.obolibrary.org/obo/UBERON_0018679, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793812; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,neuron type kidney 141,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794764, http://purl.obolibrary.org/obo/UBERON_0002113, http://uri.interlex.org/base/ilx_0794730, http://purl.obolibrary.org/obo/UBERON_0005006, http://purl.obolibrary.org/obo/UBERON_0011926; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,neuron type kidney 143,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795057, http://purl.obolibrary.org/obo/UBERON_0001224, http://purl.obolibrary.org/obo/UBERON_0011929, http://purl.obolibrary.org/obo/UBERON_0001184, http://uri.interlex.org/base/ilx_0795058; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,neuron type mmset1 12,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0790497, http://uri.interlex.org/base/ilx_0784439, http://uri.interlex.org/base/ilx_0739303, http://uri.interlex.org/base/ilx_0739304, http://uri.interlex.org/base/ilx_0786228, http://uri.interlex.org/base/ilx_0786141, http://purl.obolibrary.org/obo/UBERON_0001780, http://uri.interlex.org/base/ilx_0788945, http://purl.obolibrary.org/obo/UBERON_0002441, http://uri.interlex.org/base/ilx_0786272, http://uri.interlex.org/base/ilx_0738444, http://uri.interlex.org/base/ilx_0786722; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/144,neuron type kidney 144,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0789892, http://uri.interlex.org/base/ilx_0795029, http://uri.interlex.org/base/ilx_0795030, http://purl.obolibrary.org/obo/UBERON_0002855, http://purl.obolibrary.org/obo/UBERON_0002853, http://purl.obolibrary.org/obo/UBERON_0001225, http://uri.interlex.org/base/ilx_0787665, http://purl.obolibrary.org/obo/UBERON_0002854, http://purl.obolibrary.org/obo/UBERON_0001230, http://uri.interlex.org/base/ilx_0795028, http://purl.obolibrary.org/obo/UBERON_0002857, http://uri.interlex.org/base/ilx_0795027, http://uri.interlex.org/base/ilx_0792058, http://uri.interlex.org/base/ilx_0795026, http://purl.obolibrary.org/obo/UBERON_0002856, http://uri.interlex.org/base/ilx_0787779, http://purl.obolibrary.org/obo/UBERON_0003517, http://uri.interlex.org/base/ilx_0790338; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001964, http://purl.obolibrary.org/obo/UBERON_0018681" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,neuron type kidney 142,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0018676, http://purl.obolibrary.org/obo/UBERON_0002870, http://uri.interlex.org/base/ilx_0795057, http://purl.obolibrary.org/obo/UBERON_0001759; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/145,neuron type kidney 145,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005006, http://purl.obolibrary.org/obo/UBERON_0009050, http://purl.obolibrary.org/obo/UBERON_0001759, http://purl.obolibrary.org/obo/UBERON_0005363; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794476" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,neuron type kidney 140,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794764, http://purl.obolibrary.org/obo/UBERON_0006467, http://uri.interlex.org/base/ilx_0794730, http://uri.interlex.org/base/ilx_0731969, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006465; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10090" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,neuron type kidney 150,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0018676, http://purl.obolibrary.org/obo/UBERON_0006851, http://purl.obolibrary.org/obo/UBERON_0004640, http://purl.obolibrary.org/obo/UBERON_0001964, http://purl.obolibrary.org/obo/UBERON_0002303, http://purl.obolibrary.org/obo/UBERON_0001225, http://purl.obolibrary.org/obo/UBERON_0004639, http://purl.obolibrary.org/obo/UBERON_0006853, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0739295; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/153,neuron type kidney 153,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795052, http://uri.interlex.org/base/ilx_0787810, http://uri.interlex.org/base/ilx_0785729, http://uri.interlex.org/base/ilx_0795039, http://uri.interlex.org/base/ilx_0792342, http://uri.interlex.org/base/ilx_0795035, http://uri.interlex.org/base/ilx_0795034, http://uri.interlex.org/base/ilx_0784588, http://uri.interlex.org/base/ilx_0795050, http://uri.interlex.org/base/ilx_0792508, http://uri.interlex.org/base/ilx_0795036, http://uri.interlex.org/base/ilx_0786788, http://uri.interlex.org/base/ilx_0789839, http://uri.interlex.org/base/ilx_0786477, http://uri.interlex.org/base/ilx_0785488, http://uri.interlex.org/base/ilx_0795038, http://uri.interlex.org/base/ilx_0790494, http://uri.interlex.org/base/ilx_0792057, http://uri.interlex.org/base/ilx_0784992, http://uri.interlex.org/base/ilx_0795032, http://uri.interlex.org/base/ilx_0795033, http://uri.interlex.org/base/ilx_0785409, http://purl.obolibrary.org/obo/UBERON_0004538, http://uri.interlex.org/base/ilx_0795037, http://uri.interlex.org/base/ilx_0790414; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0018683" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/154,neuron type kidney 154,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0785098, http://uri.interlex.org/base/ilx_0795049, http://uri.interlex.org/base/ilx_0787781, http://uri.interlex.org/base/ilx_0795041, http://uri.interlex.org/base/ilx_0795047, http://uri.interlex.org/base/ilx_0787285, http://uri.interlex.org/base/ilx_0791153, http://uri.interlex.org/base/ilx_0795048, http://uri.interlex.org/base/ilx_0786813, http://uri.interlex.org/base/ilx_0795042, http://uri.interlex.org/base/ilx_0786372, http://uri.interlex.org/base/ilx_0788711, http://uri.interlex.org/base/ilx_0795044, http://uri.interlex.org/base/ilx_0795051, http://uri.interlex.org/base/ilx_0795046, http://uri.interlex.org/base/ilx_0785659, http://uri.interlex.org/base/ilx_0795045, http://uri.interlex.org/base/ilx_0786989, http://uri.interlex.org/base/ilx_0795043, http://uri.interlex.org/base/ilx_0792995, http://uri.interlex.org/base/ilx_0785477, http://purl.obolibrary.org/obo/UBERON_0004539, http://uri.interlex.org/base/ilx_0786402, http://uri.interlex.org/base/ilx_0788647, http://uri.interlex.org/base/ilx_0786793, http://uri.interlex.org/base/ilx_0791527, http://uri.interlex.org/base/ilx_0785947, http://uri.interlex.org/base/ilx_0795040; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0018683" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/114,neuron type liver 114,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002394, http://purl.obolibrary.org/obo/UBERON_0009050, http://uri.interlex.org/base/ilx_0790316, http://purl.obolibrary.org/obo/UBERON_0002017, http://purl.obolibrary.org/obo/UBERON_0015423, http://purl.obolibrary.org/obo/UBERON_0001759; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0793826" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/115,neuron type liver 115,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002394, http://purl.obolibrary.org/obo/UBERON_0009050, http://uri.interlex.org/base/ilx_0792433, http://purl.obolibrary.org/obo/UBERON_0002017, http://purl.obolibrary.org/obo/UBERON_0001759; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0789580, http://uri.interlex.org/base/ilx_0795011, http://uri.interlex.org/base/ilx_0793827" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,neuron type kidney 152,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0018676, http://purl.obolibrary.org/obo/UBERON_0006851, http://uri.interlex.org/base/ilx_0794764, http://purl.obolibrary.org/obo/UBERON_0002303, http://uri.interlex.org/base/ilx_0793082, http://purl.obolibrary.org/obo/UBERON_0001225, http://purl.obolibrary.org/obo/UBERON_0004639, http://purl.obolibrary.org/obo/UBERON_0006853, http://purl.obolibrary.org/obo/UBERON_0004640; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,neuron type liver 106,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001193, http://uri.interlex.org/base/ilx_0795008, http://uri.interlex.org/base/ilx_0793082; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,neuron type liver 108,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002017, http://uri.interlex.org/base/ilx_0793082, http://uri.interlex.org/base/ilx_0795009; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,neuron type mmset4 2,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793834, http://uri.interlex.org/base/ilx_0793823, http://uri.interlex.org/base/ilx_0793804, http://purl.obolibrary.org/obo/UBERON_0018675, http://uri.interlex.org/base/ilx_0793805; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,neuron type liver 105,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793813, http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793815, http://uri.interlex.org/base/ilx_0793082, http://purl.obolibrary.org/obo/UBERON_0018679, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793812; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,neuron type liver 107,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793813, http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793815, http://uri.interlex.org/base/ilx_0793082, http://purl.obolibrary.org/obo/UBERON_0018679, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793812; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,neuron type kidney 149,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0793220, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793218, http://uri.interlex.org/base/ilx_0793219, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0793818, http://uri.interlex.org/base/ilx_0793817, http://uri.interlex.org/base/ilx_0739295; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,neuron type kidney 151,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794764, http://uri.interlex.org/base/ilx_0793220, http://uri.interlex.org/base/ilx_0793082, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793218, http://uri.interlex.org/base/ilx_0793219, http://uri.interlex.org/base/ilx_0793818, http://uri.interlex.org/base/ilx_0793817, http://purl.obolibrary.org/obo/UBERON_0002010; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,neuron type liver 110,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795008, http://purl.obolibrary.org/obo/UBERON_0001193, http://uri.interlex.org/base/ilx_0795010; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,neuron type liver 112,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002394, http://purl.obolibrary.org/obo/UBERON_0002017, http://uri.interlex.org/base/ilx_0795009, http://uri.interlex.org/base/ilx_0795010; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,neuron type mmset4 9,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0000992, http://uri.interlex.org/base/ilx_0793832, http://uri.interlex.org/base/ilx_0793821, http://purl.obolibrary.org/obo/UBERON_0035772; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000383; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606, http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,neuron type mmset4 7,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793699, http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793813, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793815, http://purl.obolibrary.org/obo/UBERON_0018681, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793701, http://uri.interlex.org/base/ilx_0793812, http://uri.interlex.org/base/ilx_0793819, http://uri.interlex.org/base/ilx_0793818, http://uri.interlex.org/base/ilx_0793821, http://uri.interlex.org/base/ilx_0793700, http://uri.interlex.org/base/ilx_0793817, http://purl.obolibrary.org/obo/UBERON_0018680; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000383; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,neuron type mmset4 5,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0000992, http://uri.interlex.org/base/ilx_0793832, http://uri.interlex.org/base/ilx_0794910; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000383; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,neuron type mmset4 4b,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001719, http://purl.obolibrary.org/obo/UBERON_0001759, http://uri.interlex.org/base/ilx_0794910, http://purl.obolibrary.org/obo/UBERON_0035772; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000383; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,neuron type mmset4 4c,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002870, http://purl.obolibrary.org/obo/UBERON_0001759, http://uri.interlex.org/base/ilx_0794910, http://purl.obolibrary.org/obo/UBERON_0035772; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000383; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,neuron type mmset4 6,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0000992, http://purl.obolibrary.org/obo/UBERON_0009050, http://purl.obolibrary.org/obo/UBERON_0005363; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000383; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001759" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,neuron type mmset4 4a,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0009050, http://purl.obolibrary.org/obo/UBERON_0001759, http://uri.interlex.org/base/ilx_0794910, http://purl.obolibrary.org/obo/UBERON_0035772; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000383; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,neuron type femrep 40-1,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0739295, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0793832, http://purl.obolibrary.org/obo/UBERON_0002118; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,neuron type femrep 37,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002119, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0793832, http://uri.interlex.org/base/ilx_0739295; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,neuron type femrep 31,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794765, http://purl.obolibrary.org/obo/UBERON_0001964, http://uri.interlex.org/base/ilx_0794730, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0793832, http://purl.obolibrary.org/obo/UBERON_0018681, http://purl.obolibrary.org/obo/UBERON_0018683, http://uri.interlex.org/base/ilx_0739295; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,neuron type femrep 32,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001964, http://uri.interlex.org/base/ilx_0739295, http://uri.interlex.org/base/ilx_0794730, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0793832, http://purl.obolibrary.org/obo/UBERON_0018681, http://purl.obolibrary.org/obo/UBERON_0018683, http://uri.interlex.org/base/ilx_0794767; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,neuron type femrep 33,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001964, http://uri.interlex.org/base/ilx_0794730, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0793832, http://purl.obolibrary.org/obo/UBERON_0018681, http://purl.obolibrary.org/obo/UBERON_0003984, http://purl.obolibrary.org/obo/UBERON_0018683, http://uri.interlex.org/base/ilx_0739295; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,neuron type femrep 43,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0790472, http://purl.obolibrary.org/obo/UBERON_0005303, http://uri.interlex.org/base/ilx_0794766, http://uri.interlex.org/base/ilx_0786933, http://uri.interlex.org/base/ilx_0788315, http://purl.obolibrary.org/obo/UBERON_0018683; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,neuron type femrep 42,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0790472, http://purl.obolibrary.org/obo/UBERON_0005303, http://uri.interlex.org/base/ilx_0794768, http://uri.interlex.org/base/ilx_0786933, http://uri.interlex.org/base/ilx_0788315, http://purl.obolibrary.org/obo/UBERON_0018683; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,neuron type femrep 44,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0790472, http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0000002, http://uri.interlex.org/base/ilx_0786933, http://uri.interlex.org/base/ilx_0788315, http://purl.obolibrary.org/obo/UBERON_0018683; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,neuron type femrep 38,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002119, http://uri.interlex.org/base/ilx_0793082, http://uri.interlex.org/base/ilx_0793822; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,neuron type femrep 40,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793832, http://uri.interlex.org/base/ilx_0793082, http://purl.obolibrary.org/obo/UBERON_0002118; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,neuron type femrep 53,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794737, http://purl.obolibrary.org/obo/UBERON_0011929, http://uri.interlex.org/base/ilx_0793823; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,neuron type femrep 56,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011929, http://uri.interlex.org/base/ilx_0793823, http://purl.obolibrary.org/obo/UBERON_0000002; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,neuron type femrep 55,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011929, http://purl.obolibrary.org/obo/UBERON_0001295, http://uri.interlex.org/base/ilx_0793823; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,neuron type femrep 54,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001296, http://purl.obolibrary.org/obo/UBERON_0011929, http://uri.interlex.org/base/ilx_0793823; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,neuron type femrep 52,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793877, http://uri.interlex.org/base/ilx_0793878, http://purl.obolibrary.org/obo/UBERON_0018675, http://uri.interlex.org/base/ilx_0793823; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,neuron type femrep 35,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794764, http://uri.interlex.org/base/ilx_0793832, http://purl.obolibrary.org/obo/UBERON_0003984; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/61,neuron type femrep 61,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003943, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0000992, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0002857, http://uri.interlex.org/base/ilx_0793357, http://uri.interlex.org/base/ilx_0793359, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002856, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0002858; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0005303" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/60,neuron type femrep 60,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003943, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0002261, http://uri.interlex.org/base/ilx_0794769, http://purl.obolibrary.org/obo/UBERON_0002857, http://uri.interlex.org/base/ilx_0793357, http://uri.interlex.org/base/ilx_0793359, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002856, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0002858; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0005303" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/63,neuron type femrep 63,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://uri.interlex.org/base/ilx_0738432, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0000002, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0002860, http://uri.interlex.org/base/ilx_0793360; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0018675" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/62,neuron type femrep 62,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://uri.interlex.org/base/ilx_0794770, http://uri.interlex.org/base/ilx_0738432, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0002860, http://uri.interlex.org/base/ilx_0793360; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0018675" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/64,neuron type femrep 64,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0009050, http://purl.obolibrary.org/obo/UBERON_0005363, http://purl.obolibrary.org/obo/UBERON_0000002, http://purl.obolibrary.org/obo/UBERON_0001759, http://purl.obolibrary.org/obo/UBERON_0000995; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794476" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,neuron type femrep 36,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0793216, http://purl.obolibrary.org/obo/UBERON_0006466, http://uri.interlex.org/base/ilx_0793215, http://purl.obolibrary.org/obo/UBERON_0006465, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0739295; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,neuron type femrep 39,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006465, http://uri.interlex.org/base/ilx_0793082, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0018680; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,neuron type femrep 30,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0007715, http://purl.obolibrary.org/obo/UBERON_0007716, http://uri.interlex.org/base/ilx_0794916, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0739295; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,neuron type femrep 41,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0790472, http://purl.obolibrary.org/obo/UBERON_0007715, http://purl.obolibrary.org/obo/UBERON_0007716, http://uri.interlex.org/base/ilx_0794916, http://uri.interlex.org/base/ilx_0786933, http://uri.interlex.org/base/ilx_0788315; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,neuron type femrep 34,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0007715, http://purl.obolibrary.org/obo/UBERON_0007716, http://uri.interlex.org/base/ilx_0794764, http://purl.obolibrary.org/obo/UBERON_0018679, http://purl.obolibrary.org/obo/UBERON_0018683; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,neuron type prostate 11,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0035770, http://purl.obolibrary.org/obo/UBERON_0005303, http://uri.interlex.org/base/ilx_0793823, http://uri.interlex.org/base/ilx_0793882, http://uri.interlex.org/base/ilx_0793819, http://uri.interlex.org/base/ilx_0793818, http://uri.interlex.org/base/ilx_0793817, http://uri.interlex.org/base/ilx_0793883; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,neuron type semves 1,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0005453, http://uri.interlex.org/base/ilx_0793823, http://uri.interlex.org/base/ilx_0793819, http://uri.interlex.org/base/ilx_0793818; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,neuron type mmset4 3c,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793807, http://purl.obolibrary.org/obo/UBERON_0002366, http://uri.interlex.org/base/ilx_0793834, http://uri.interlex.org/base/ilx_0793823; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,neuron type mmset4 3a,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793807, http://uri.interlex.org/base/ilx_0793834, http://purl.obolibrary.org/obo/UBERON_0004713, http://uri.interlex.org/base/ilx_0793823; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,neuron type mmset4 3b,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793807, http://uri.interlex.org/base/ilx_0793834, http://purl.obolibrary.org/obo/UBERON_0011183, http://uri.interlex.org/base/ilx_0793823; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,neuron type semves 2a,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0004665, http://purl.obolibrary.org/obo/UBERON_0011926, http://uri.interlex.org/base/ilx_0793884, http://uri.interlex.org/base/ilx_0793823; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,neuron type semves 2,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011926, http://purl.obolibrary.org/obo/UBERON_0004805, http://uri.interlex.org/base/ilx_0793884, http://uri.interlex.org/base/ilx_0793823; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,neuron type semves 4a,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011929, http://purl.obolibrary.org/obo/UBERON_0004665, http://uri.interlex.org/base/ilx_0793884, http://uri.interlex.org/base/ilx_0793823; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,neuron type semves 4,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011929, http://purl.obolibrary.org/obo/UBERON_0004805, http://uri.interlex.org/base/ilx_0793884, http://uri.interlex.org/base/ilx_0793823; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,neuron type prostate 13,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793877, http://uri.interlex.org/base/ilx_0793878, http://purl.obolibrary.org/obo/UBERON_0018675, http://uri.interlex.org/base/ilx_0793823; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,neuron type semves 3,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006460, http://uri.interlex.org/base/ilx_0738432, http://purl.obolibrary.org/obo/UBERON_0018675, http://uri.interlex.org/base/ilx_0793823; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,neuron type prostate 12,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011926, http://purl.obolibrary.org/obo/UBERON_0004243, http://uri.interlex.org/base/ilx_0793823; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,neuron type prostate 14,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0000428, http://purl.obolibrary.org/obo/UBERON_0011929, http://uri.interlex.org/base/ilx_0793823; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,neuron type liver 111,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001719, http://uri.interlex.org/base/ilx_0793827, http://uri.interlex.org/base/ilx_0794506, http://uri.interlex.org/base/ilx_0795010, http://uri.interlex.org/base/ilx_0794141; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/113,neuron type liver 113,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002851, http://uri.interlex.org/base/ilx_0795024, http://purl.obolibrary.org/obo/UBERON_0002853, http://uri.interlex.org/base/ilx_0787665, http://purl.obolibrary.org/obo/UBERON_0002852, http://uri.interlex.org/base/ilx_0789741, http://uri.interlex.org/base/ilx_0792624, http://uri.interlex.org/base/ilx_0790338, http://uri.interlex.org/base/ilx_0789892, http://purl.obolibrary.org/obo/UBERON_0002854, http://purl.obolibrary.org/obo/UBERON_0002394, http://uri.interlex.org/base/ilx_0795025, http://purl.obolibrary.org/obo/UBERON_0002855, http://purl.obolibrary.org/obo/UBERON_0002017, http://purl.obolibrary.org/obo/UBERON_0001279, http://uri.interlex.org/base/ilx_0795023, http://uri.interlex.org/base/ilx_0795028, http://uri.interlex.org/base/ilx_0795027, http://purl.obolibrary.org/obo/UBERON_0002850, http://uri.interlex.org/base/ilx_0784605, http://uri.interlex.org/base/ilx_0795026; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0018679" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,neuron type liver 109,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794142, http://purl.obolibrary.org/obo/UBERON_0002870, http://uri.interlex.org/base/ilx_0790553, http://uri.interlex.org/base/ilx_0795010, http://uri.interlex.org/base/ilx_0793826; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/155,neuron type kidney 155,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002113, http://purl.obolibrary.org/obo/UBERON_0009050, http://purl.obolibrary.org/obo/UBERON_0001759, http://purl.obolibrary.org/obo/UBERON_0005363; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794476" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/14,neuron type mmset1 14,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002370, http://purl.obolibrary.org/obo/UBERON_0005363; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10116; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001759" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,neuron type mmset1 13,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793714, http://uri.interlex.org/base/ilx_0793735, http://purl.obolibrary.org/obo/UBERON_0002262; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_10141" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,neuron type swglnd 159,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0786228, http://uri.interlex.org/base/ilx_0774266, http://uri.interlex.org/base/ilx_0786272, http://purl.obolibrary.org/obo/UBERON_0001021, http://uri.interlex.org/base/ilx_0786722, http://uri.interlex.org/base/ilx_0795060; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,neuron type swglnd 161,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0784378, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0790482, http://uri.interlex.org/base/ilx_0786141, http://uri.interlex.org/base/ilx_0784721, http://uri.interlex.org/base/ilx_0787015, http://uri.interlex.org/base/ilx_0786272, http://uri.interlex.org/base/ilx_0795061, http://purl.obolibrary.org/obo/UBERON_0001021, http://uri.interlex.org/base/ilx_0784569, http://uri.interlex.org/base/ilx_0789947; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,neuron type swglnd 163,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0784569, http://uri.interlex.org/base/ilx_0795062, http://uri.interlex.org/base/ilx_0787015, http://purl.obolibrary.org/obo/UBERON_0001021, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0786933; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,neuron type swglnd 157,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0790482, http://uri.interlex.org/base/ilx_0786228, http://uri.interlex.org/base/ilx_0786141, http://uri.interlex.org/base/ilx_0784721, http://uri.interlex.org/base/ilx_0786272, http://uri.interlex.org/base/ilx_0795059, http://purl.obolibrary.org/obo/UBERON_0001021, http://uri.interlex.org/base/ilx_0789947, http://uri.interlex.org/base/ilx_0786722; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,neuron type swglnd 158,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793699, http://uri.interlex.org/base/ilx_0786228, http://uri.interlex.org/base/ilx_0774266, http://uri.interlex.org/base/ilx_0738372, http://uri.interlex.org/base/ilx_0793209, http://uri.interlex.org/base/ilx_0786272, http://uri.interlex.org/base/ilx_0793210, http://uri.interlex.org/base/ilx_0793208, http://uri.interlex.org/base/ilx_0793698, http://uri.interlex.org/base/ilx_0786722, http://uri.interlex.org/base/ilx_0792474, http://uri.interlex.org/base/ilx_0793697; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,neuron type liver 121,invalid,"Entities not found: http://purl.obolibrary.org/obo/CL_0000182, http://uri.interlex.org/base/ilx_0771304, http://uri.interlex.org/base/ilx_0793082, http://purl.obolibrary.org/obo/UBERON_0001172, http://purl.obolibrary.org/obo/UBERON_0001281, http://purl.obolibrary.org/obo/UBERON_0004647, http://purl.obolibrary.org/obo/UBERON_0006729; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,neuron type swglnd 156,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793699, http://uri.interlex.org/base/ilx_0786272, http://uri.interlex.org/base/ilx_0786141, http://uri.interlex.org/base/ilx_0784721, http://uri.interlex.org/base/ilx_0793214, http://uri.interlex.org/base/ilx_0793208, http://uri.interlex.org/base/ilx_0789947, http://uri.interlex.org/base/ilx_0786722, http://uri.interlex.org/base/ilx_0793213, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793212, http://uri.interlex.org/base/ilx_0793812, http://uri.interlex.org/base/ilx_0793210, http://uri.interlex.org/base/ilx_0793211, http://uri.interlex.org/base/ilx_0793697, http://uri.interlex.org/base/ilx_0786228, http://uri.interlex.org/base/ilx_0790482, http://uri.interlex.org/base/ilx_0793701, http://uri.interlex.org/base/ilx_0793698, http://uri.interlex.org/base/ilx_0793700, http://uri.interlex.org/base/ilx_0793209; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,neuron type swglnd 160,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793699, http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793815, http://uri.interlex.org/base/ilx_0786272, http://uri.interlex.org/base/ilx_0793217, http://uri.interlex.org/base/ilx_0784378, http://uri.interlex.org/base/ilx_0786141, http://uri.interlex.org/base/ilx_0784721, http://uri.interlex.org/base/ilx_0793214, http://uri.interlex.org/base/ilx_0793218, http://uri.interlex.org/base/ilx_0789947, http://uri.interlex.org/base/ilx_0793213, http://uri.interlex.org/base/ilx_0793813, http://uri.interlex.org/base/ilx_0793216, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793212, http://uri.interlex.org/base/ilx_0793812, http://uri.interlex.org/base/ilx_0793210, http://uri.interlex.org/base/ilx_0793215, http://uri.interlex.org/base/ilx_0784569, http://uri.interlex.org/base/ilx_0793211, http://uri.interlex.org/base/ilx_0790482, http://uri.interlex.org/base/ilx_0787015, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793701, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0793700; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,neuron type mmset4 11,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793701, http://uri.interlex.org/base/ilx_0793812, http://purl.obolibrary.org/obo/UBERON_0001236, http://uri.interlex.org/base/ilx_0793700, http://purl.obolibrary.org/obo/UBERON_0018680; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,neuron type mmset4 12,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0018680, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793701, http://uri.interlex.org/base/ilx_0793812, http://uri.interlex.org/base/ilx_0793700, http://purl.obolibrary.org/obo/UBERON_0002262; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,neuron type mmset4 1,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793802, http://uri.interlex.org/base/ilx_0793800, http://uri.interlex.org/base/ilx_0793803, http://uri.interlex.org/base/ilx_0793801, http://purl.obolibrary.org/obo/UBERON_0018675; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,neuron type liver 120,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793813, http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793082, http://uri.interlex.org/base/ilx_0793812, http://purl.obolibrary.org/obo/UBERON_0018680; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,neuron type liver 116,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795012, http://uri.interlex.org/base/ilx_0793813, http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793812, http://purl.obolibrary.org/obo/UBERON_0018680; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,neuron type liver 118,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795014, http://uri.interlex.org/base/ilx_0793813, http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793812, http://purl.obolibrary.org/obo/UBERON_0018680; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,neuron type swglnd 162,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0784569, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793220, http://uri.interlex.org/base/ilx_0793216, http://uri.interlex.org/base/ilx_0793815, http://uri.interlex.org/base/ilx_0787015, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793221, http://uri.interlex.org/base/ilx_0793218, http://uri.interlex.org/base/ilx_0793819, http://uri.interlex.org/base/ilx_0793217, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0793818, http://uri.interlex.org/base/ilx_0786933; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,neuron type kidney 133,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795057, http://uri.interlex.org/base/ilx_0793814, http://purl.obolibrary.org/obo/UBERON_0001964, http://uri.interlex.org/base/ilx_0793815, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793818; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,neuron type kidney 131,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793814, http://uri.interlex.org/base/ilx_0793815, http://uri.interlex.org/base/ilx_0794730, http://uri.interlex.org/base/ilx_0793816, http://uri.interlex.org/base/ilx_0793818, http://purl.obolibrary.org/obo/UBERON_0018681; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,neuron type kidney 132,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0018676, http://purl.obolibrary.org/obo/UBERON_0002303, http://uri.interlex.org/base/ilx_0794730, http://purl.obolibrary.org/obo/UBERON_0004639, http://uri.interlex.org/base/ilx_0795053, http://uri.interlex.org/base/ilx_0795054, http://purl.obolibrary.org/obo/UBERON_0009773, http://purl.obolibrary.org/obo/UBERON_0004640; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,neuron type liver 123,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795008, http://purl.obolibrary.org/obo/UBERON_0001193, http://uri.interlex.org/base/ilx_0795010; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,neuron type liver 125,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002394, http://purl.obolibrary.org/obo/UBERON_0002017, http://uri.interlex.org/base/ilx_0795009, http://uri.interlex.org/base/ilx_0795010; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,neuron type liver 117,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795013, http://uri.interlex.org/base/ilx_0795008, http://uri.interlex.org/base/ilx_0795012; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,neuron type liver 119,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795015, http://uri.interlex.org/base/ilx_0795009, http://uri.interlex.org/base/ilx_0795014, http://uri.interlex.org/base/ilx_0795016, http://purl.obolibrary.org/obo/UBERON_0004820; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,neuron type kidney 138,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795056, http://purl.obolibrary.org/obo/UBERON_0011929, http://purl.obolibrary.org/obo/UBERON_0001184, http://uri.interlex.org/base/ilx_0795055; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,neuron type kidney 136,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795056, http://purl.obolibrary.org/obo/UBERON_0002113, http://purl.obolibrary.org/obo/UBERON_0011929, http://purl.obolibrary.org/obo/UBERON_0001184, http://uri.interlex.org/base/ilx_0795054; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,neuron type kidney 134,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0018676, http://uri.interlex.org/base/ilx_0795057, http://purl.obolibrary.org/obo/UBERON_0002303, http://purl.obolibrary.org/obo/UBERON_0004639, http://uri.interlex.org/base/ilx_0795053, http://uri.interlex.org/base/ilx_0795054, http://purl.obolibrary.org/obo/UBERON_0009773, http://purl.obolibrary.org/obo/UBERON_0004640; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,neuron type mmset4 8,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793813, http://purl.obolibrary.org/obo/UBERON_0018681, http://uri.interlex.org/base/ilx_0793811, http://uri.interlex.org/base/ilx_0793701, http://uri.interlex.org/base/ilx_0793812, http://uri.interlex.org/base/ilx_0793821, http://uri.interlex.org/base/ilx_0793700, http://purl.obolibrary.org/obo/UBERON_0018680; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000383; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,neuron type mmset4 3e,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0006608, http://uri.interlex.org/base/ilx_0793809, http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0002014; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000383; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,neuron type femrep 84,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0785238, http://purl.obolibrary.org/obo/UBERON_0002014, http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0018675, http://uri.interlex.org/base/ilx_0788532, http://uri.interlex.org/base/ilx_0788777; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,neuron type femrep 76,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0005488, http://uri.interlex.org/base/ilx_0793832, http://uri.interlex.org/base/ilx_0794730, http://purl.obolibrary.org/obo/UBERON_0002014, http://purl.obolibrary.org/obo/UBERON_8410010, http://purl.obolibrary.org/obo/UBERON_0002013, http://purl.obolibrary.org/obo/UBERON_0012648, http://uri.interlex.org/base/ilx_0794732, http://purl.obolibrary.org/obo/UBERON_0035770; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,neuron type femrep 79,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793832, http://purl.obolibrary.org/obo/UBERON_0001190, http://uri.interlex.org/base/ilx_0794910; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,neuron type femrep 80,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793832, http://purl.obolibrary.org/obo/UBERON_0001305, http://uri.interlex.org/base/ilx_0794910; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,neuron type femrep 78,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793832, http://uri.interlex.org/base/ilx_0794910, http://purl.obolibrary.org/obo/UBERON_0006960; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,neuron type femrep 74,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794735, http://purl.obolibrary.org/obo/UBERON_0011926, http://uri.interlex.org/base/ilx_0794910, http://purl.obolibrary.org/obo/UBERON_0012648; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/103,neuron type femrep 103,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0002855, http://purl.obolibrary.org/obo/UBERON_0002853, http://purl.obolibrary.org/obo/UBERON_0002854, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0002857, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0000002, http://purl.obolibrary.org/obo/UBERON_0002856; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0005303" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/102,neuron type femrep 102,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0002855, http://purl.obolibrary.org/obo/UBERON_0002853, http://purl.obolibrary.org/obo/UBERON_0002854, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0002857, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002856, http://purl.obolibrary.org/obo/UBERON_0000995; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0005303" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/101,neuron type femrep 101,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0007713, http://purl.obolibrary.org/obo/UBERON_0000002, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0006462, http://purl.obolibrary.org/obo/UBERON_0002862; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0018675" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/100,neuron type femrep 100,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0000996, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0007713, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0006462, http://purl.obolibrary.org/obo/UBERON_0002862; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0018675" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/104,neuron type femrep 104,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0002411, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0007713, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0006462, http://purl.obolibrary.org/obo/UBERON_0002862; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0011390" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,neuron type femrep 73,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0005488, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0002013, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002010, http://uri.interlex.org/base/ilx_0794732, http://purl.obolibrary.org/obo/UBERON_0002014, http://uri.interlex.org/base/ilx_0794910; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,neuron type femrep 75,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0006467, http://uri.interlex.org/base/ilx_0794730, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0018681, http://purl.obolibrary.org/obo/UBERON_0018683; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,neuron type femrep 66,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0002013, http://purl.obolibrary.org/obo/UBERON_0002014; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,neuron type femrep 81,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0002013, http://purl.obolibrary.org/obo/UBERON_0002014; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/89,neuron type senmot 89,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011391, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://uri.interlex.org/base/ilx_0741796, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/88,neuron type senmot 88,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011380, http://purl.obolibrary.org/obo/UBERON_0011391, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,neuron type femrep 77,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0005488, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0002013, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0002010, http://uri.interlex.org/base/ilx_0794732, http://purl.obolibrary.org/obo/UBERON_0002014, http://uri.interlex.org/base/ilx_0794910; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,neuron type femrep 69,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0794731, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0011926; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,neuron type femrep 72,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0011926, http://uri.interlex.org/base/ilx_0794734; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,neuron type femrep 67,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0001296, http://purl.obolibrary.org/obo/UBERON_0011926; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,neuron type femrep 70,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0011926, http://purl.obolibrary.org/obo/UBERON_0002493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,neuron type femrep 71,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0004223, http://purl.obolibrary.org/obo/UBERON_0011926; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,neuron type femrep 82,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0008323, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0011926; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,neuron type femrep 83,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0008331, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0011926; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,neuron type femrep 68,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0011926, http://purl.obolibrary.org/obo/UBERON_0015173; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,neuron type femrep 89,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0794731, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,neuron type femrep 85,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://uri.interlex.org/base/ilx_0794734, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,neuron type femrep 91,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://uri.interlex.org/base/ilx_0794735, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,neuron type femrep 90,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://uri.interlex.org/base/ilx_0794736, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,neuron type femrep 92,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://uri.interlex.org/base/ilx_0794737, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,neuron type femrep 88,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://uri.interlex.org/base/ilx_0794738, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,neuron type femrep 94,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0011929, http://purl.obolibrary.org/obo/UBERON_0000992; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,neuron type femrep 93,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0001296, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,neuron type femrep 86,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0001344, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,neuron type femrep 87,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793808, http://purl.obolibrary.org/obo/UBERON_0004223, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,neuron type mmset4 3,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0004713, http://uri.interlex.org/base/ilx_0793803, http://uri.interlex.org/base/ilx_0793807, http://uri.interlex.org/base/ilx_0793806, http://purl.obolibrary.org/obo/UBERON_0002014; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,neuron type prostate 15,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005303, http://uri.interlex.org/base/ilx_0793815, http://uri.interlex.org/base/ilx_0793816, http://purl.obolibrary.org/obo/UBERON_0002013, http://uri.interlex.org/base/ilx_0793819, http://purl.obolibrary.org/obo/UBERON_0016508, http://uri.interlex.org/base/ilx_0793818, http://uri.interlex.org/base/ilx_0793817; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,neuron type prostate 17,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793880, http://uri.interlex.org/base/ilx_0793881, http://uri.interlex.org/base/ilx_0793879, http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0018675; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,neuron type semves 5,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0006467, http://uri.interlex.org/base/ilx_0793357, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0002013; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,neuron type semves 7,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0018675, http://purl.obolibrary.org/obo/UBERON_0006462; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,neuron type semves 6,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0004665, http://purl.obolibrary.org/obo/UBERON_0011926; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,neuron type semves 8,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0000998, http://purl.obolibrary.org/obo/UBERON_0011929; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,neuron type prostate 16,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0011926, http://purl.obolibrary.org/obo/UBERON_0004243; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,neuron type prostate 18,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0016508, http://purl.obolibrary.org/obo/UBERON_0000428, http://purl.obolibrary.org/obo/UBERON_0011929; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,neuron type mmset1 2,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001989, http://uri.interlex.org/base/ilx_0793713, http://purl.obolibrary.org/obo/UBERON_0011096, http://uri.interlex.org/base/ilx_0793712, http://uri.interlex.org/base/ilx_0793711, http://purl.obolibrary.org/obo/UBERON_0002024, http://purl.obolibrary.org/obo/UBERON_0018412, http://purl.obolibrary.org/obo/UBERON_0001817; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/59,neuron type senmot 59,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0001470; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001493" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/64,neuron type senmot 64,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002261, http://uri.interlex.org/base/ilx_0794962, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794967" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/66,neuron type senmot 66,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001463, http://purl.obolibrary.org/obo/UBERON_0005276, http://purl.obolibrary.org/obo/UBERON_0003622, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0003623, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001492" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/63,neuron type senmot 63,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003403, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001492" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/61,neuron type senmot 61,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001517, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0004263, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0795005" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/62,neuron type senmot 62,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0004263, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0741799" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/65,neuron type senmot 65,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011968, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0002844, http://uri.interlex.org/base/ilx_0794961, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794967" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/67,neuron type senmot 67,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003403, http://purl.obolibrary.org/obo/UBERON_0005276, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794951, http://purl.obolibrary.org/obo/UBERON_0003724" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/20,neuron type senmot 20,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0011011, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794951, http://purl.obolibrary.org/obo/UBERON_0003724" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/17,neuron type senmot 17,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0016884, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0003724" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/18,neuron type senmot 18,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0016884, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794951, http://purl.obolibrary.org/obo/UBERON_0003724" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/60,neuron type senmot 60,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001483, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002842; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0741757" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/33,neuron type senmot 33,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://uri.interlex.org/base/ilx_0794955, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://uri.interlex.org/base/ilx_0794954, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001494" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/32,neuron type senmot 32,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794971, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001494" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/34,neuron type senmot 34,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794960, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0005278, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001494" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/19,neuron type senmot 19,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003228, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0007711, http://purl.obolibrary.org/obo/UBERON_0002843, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794967" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/31,neuron type senmot 31,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003403, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794953" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/29,neuron type senmot 29,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002844, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0005278, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_4200013, http://purl.obolibrary.org/obo/UBERON_0013777, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794970" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/30,neuron type senmot 30,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0004263, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0002845; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794952" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/126,neuron type liver 126,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002851, http://uri.interlex.org/base/ilx_0795024, http://purl.obolibrary.org/obo/UBERON_0002853, http://uri.interlex.org/base/ilx_0787665, http://purl.obolibrary.org/obo/UBERON_0002852, http://uri.interlex.org/base/ilx_0789741, http://uri.interlex.org/base/ilx_0792624, http://uri.interlex.org/base/ilx_0790338, http://uri.interlex.org/base/ilx_0789892, http://purl.obolibrary.org/obo/UBERON_0002854, http://purl.obolibrary.org/obo/UBERON_0002394, http://uri.interlex.org/base/ilx_0795025, http://purl.obolibrary.org/obo/UBERON_0002855, http://purl.obolibrary.org/obo/UBERON_0002017, http://purl.obolibrary.org/obo/UBERON_0001279, http://uri.interlex.org/base/ilx_0795023, http://uri.interlex.org/base/ilx_0795028, http://uri.interlex.org/base/ilx_0795027, http://purl.obolibrary.org/obo/UBERON_0002850, http://uri.interlex.org/base/ilx_0784605, http://uri.interlex.org/base/ilx_0795026; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0018679" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/139,neuron type kidney 139,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0789892, http://uri.interlex.org/base/ilx_0795029, http://purl.obolibrary.org/obo/UBERON_0002113, http://purl.obolibrary.org/obo/UBERON_0002855, http://purl.obolibrary.org/obo/UBERON_0002853, http://uri.interlex.org/base/ilx_0787665, http://purl.obolibrary.org/obo/UBERON_0002854, http://uri.interlex.org/base/ilx_0795028, http://purl.obolibrary.org/obo/UBERON_0002857, http://purl.obolibrary.org/obo/UBERON_0001184, http://uri.interlex.org/base/ilx_0795026, http://uri.interlex.org/base/ilx_0795054, http://uri.interlex.org/base/ilx_0787779, http://uri.interlex.org/base/ilx_0795027, http://uri.interlex.org/base/ilx_0790338; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001964, http://purl.obolibrary.org/obo/UBERON_0018681" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/163,neuron type senmot 163,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0035258, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0002857, http://purl.obolibrary.org/obo/UBERON_0004085, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002856; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794998" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/161,neuron type senmot 161,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0004262, http://purl.obolibrary.org/obo/UBERON_0002857, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002856; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794997" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/162,neuron type senmot 162,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0015479, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0002857, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002856; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794998" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/167,neuron type senmot 167,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0001366, http://purl.obolibrary.org/obo/UBERON_0011015, http://purl.obolibrary.org/obo/UBERON_0004262, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002856, http://purl.obolibrary.org/obo/UBERON_0002858; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794999" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/164,neuron type senmot 164,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003943, http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0001513, http://purl.obolibrary.org/obo/UBERON_0004262, http://purl.obolibrary.org/obo/UBERON_0001510, http://purl.obolibrary.org/obo/UBERON_0001511, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002856, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0002858; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001267" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/165,neuron type senmot 165,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003943, http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0004262, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0002856, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0002858; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0005465" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/171,neuron type senmot 171,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795004, http://uri.interlex.org/base/ilx_0795003, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0002857; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0795002" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/160,neuron type senmot 160,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0004262, http://purl.obolibrary.org/obo/UBERON_0002857, http://uri.interlex.org/base/ilx_0794987; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0794996" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/166,neuron type senmot 166,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003943, http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0001513, http://purl.obolibrary.org/obo/UBERON_0002859, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0001511, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0002860, http://purl.obolibrary.org/obo/UBERON_0006462, http://purl.obolibrary.org/obo/UBERON_0002862; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001322" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/170,neuron type senmot 170,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003943, http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0008338, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0002859, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0002860, http://purl.obolibrary.org/obo/UBERON_0006462, http://purl.obolibrary.org/obo/UBERON_0002862; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0001492, http://purl.obolibrary.org/obo/UBERON_0035111" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/168,neuron type senmot 168,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0004262, http://purl.obolibrary.org/obo/UBERON_0036014, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0002860, http://purl.obolibrary.org/obo/UBERON_0006462, http://purl.obolibrary.org/obo/UBERON_0002862; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0795000" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/169,neuron type senmot 169,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0036014, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0006462, http://purl.obolibrary.org/obo/UBERON_0002862; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0795001" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/85,neuron type senmot 85,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005298, http://purl.obolibrary.org/obo/UBERON_0001331, http://purl.obolibrary.org/obo/UBERON_0002261, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://uri.interlex.org/base/ilx_0794987, http://purl.obolibrary.org/obo/UBERON_0007713, http://purl.obolibrary.org/obo/UBERON_0002861, http://purl.obolibrary.org/obo/UBERON_0006462, http://purl.obolibrary.org/obo/UBERON_0002862; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0011390" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,neuron type liver 122,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794142, http://purl.obolibrary.org/obo/UBERON_0002870, http://uri.interlex.org/base/ilx_0790553, http://uri.interlex.org/base/ilx_0795010, http://uri.interlex.org/base/ilx_0793826; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,neuron type liver 124,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002870, http://uri.interlex.org/base/ilx_0793827, http://uri.interlex.org/base/ilx_0794506, http://uri.interlex.org/base/ilx_0795010, http://uri.interlex.org/base/ilx_0794141; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,neuron type kidney 135,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795056, http://uri.interlex.org/base/ilx_0794853, http://purl.obolibrary.org/obo/UBERON_0018676, http://purl.obolibrary.org/obo/UBERON_0002870, http://purl.obolibrary.org/obo/UBERON_0003535, http://purl.obolibrary.org/obo/UBERON_0035772, http://purl.obolibrary.org/obo/UBERON_0001759; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/127,neuron type liver 127,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002394, http://purl.obolibrary.org/obo/UBERON_0009050, http://purl.obolibrary.org/obo/UBERON_0015423, http://purl.obolibrary.org/obo/UBERON_0005363, http://purl.obolibrary.org/obo/UBERON_0001759; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606; Axiom(s) not found for: http://uri.interlex.org/base/ilx_0793826" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/116,neuron type senmot 116,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://uri.interlex.org/base/ilx_0794990, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0001371; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/118,neuron type senmot 118,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0001376, http://uri.interlex.org/base/ilx_0794990, http://purl.obolibrary.org/obo/UBERON_0006451; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/115,neuron type senmot 115,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://uri.interlex.org/base/ilx_0794990, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0008521; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/141,neuron type senmot 141,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0001323, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0001667; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/138,neuron type senmot 138,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0001391, http://purl.obolibrary.org/obo/UBERON_0001323, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0006451; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/92,neuron type senmot 92,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0011048, http://uri.interlex.org/base/ilx_0794988; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/112,neuron type senmot 112,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0006460, http://uri.interlex.org/base/ilx_0794988, http://purl.obolibrary.org/obo/UBERON_0019203; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/117,neuron type senmot 117,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0006460, http://uri.interlex.org/base/ilx_0794991, http://purl.obolibrary.org/obo/UBERON_0001370; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/114,neuron type senmot 114,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://uri.interlex.org/base/ilx_0731180, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0034984; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/113,neuron type senmot 113,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0019202, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0034984; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/145,neuron type senmot 145,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0006460, http://uri.interlex.org/base/ilx_0794992, http://purl.obolibrary.org/obo/UBERON_0035207; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/146,neuron type senmot 146,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0001386, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0035207; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/147,neuron type senmot 147,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0010524, http://purl.obolibrary.org/obo/UBERON_0035207; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/142,neuron type senmot 142,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0001387, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0035526; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/143,neuron type senmot 143,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0010526, http://purl.obolibrary.org/obo/UBERON_0035526; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/100,neuron type senmot 100,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0788972, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0001372; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/101,neuron type senmot 101,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001220, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0006449, http://uri.interlex.org/base/ilx_0788972, http://uri.interlex.org/base/ilx_0791046, http://uri.interlex.org/base/ilx_0788896, http://uri.interlex.org/base/ilx_0789374, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006450, http://uri.interlex.org/base/ilx_0786362, http://purl.obolibrary.org/obo/UBERON_0006451; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/99,neuron type senmot 99,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006448, http://uri.interlex.org/base/ilx_0788972, http://purl.obolibrary.org/obo/UBERON_0001298, http://purl.obolibrary.org/obo/UBERON_0006450, http://uri.interlex.org/base/ilx_0786362; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/96,neuron type senmot 96,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0792543, http://uri.interlex.org/base/ilx_0785076, http://purl.obolibrary.org/obo/UBERON_0006456, http://purl.obolibrary.org/obo/UBERON_0006448, http://uri.interlex.org/base/ilx_0788972, http://uri.interlex.org/base/ilx_0791808, http://purl.obolibrary.org/obo/UBERON_0001221, http://purl.obolibrary.org/obo/UBERON_0006455, http://uri.interlex.org/base/ilx_0787969, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006465, http://uri.interlex.org/base/ilx_0791046, http://uri.interlex.org/base/ilx_0792132; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/95,neuron type senmot 95,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0792543, http://uri.interlex.org/base/ilx_0785076, http://purl.obolibrary.org/obo/UBERON_0006456, http://purl.obolibrary.org/obo/UBERON_0006448, http://uri.interlex.org/base/ilx_0788972, http://uri.interlex.org/base/ilx_0791808, http://purl.obolibrary.org/obo/UBERON_0006455, http://uri.interlex.org/base/ilx_0787969, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006465, http://uri.interlex.org/base/ilx_0791046, http://uri.interlex.org/base/ilx_0792132, http://purl.obolibrary.org/obo/UBERON_0005454; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/124,neuron type senmot 124,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0001373, http://purl.obolibrary.org/obo/UBERON_0001267, http://purl.obolibrary.org/obo/UBERON_0006450; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/130,neuron type senmot 130,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0000370, http://purl.obolibrary.org/obo/UBERON_0001323, http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0006450; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/127,neuron type senmot 127,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0000303, http://purl.obolibrary.org/obo/UBERON_0005465, http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0006450; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/128,neuron type senmot 128,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005465, http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0000368, http://purl.obolibrary.org/obo/UBERON_0006450; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/129,neuron type senmot 129,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0000370, http://purl.obolibrary.org/obo/UBERON_0005465, http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0006450; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/102,neuron type senmot 102,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0001267, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0001369; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/123,neuron type senmot 123,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0001378, http://purl.obolibrary.org/obo/UBERON_0001267; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/122,neuron type senmot 122,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0001379, http://purl.obolibrary.org/obo/UBERON_0001267; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/120,neuron type senmot 120,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0001380, http://purl.obolibrary.org/obo/UBERON_0001267; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/121,neuron type senmot 121,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0014847, http://purl.obolibrary.org/obo/UBERON_0001267; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/172,neuron type senmot 172,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001267, http://purl.obolibrary.org/obo/UBERON_0001369, http://purl.obolibrary.org/obo/UBERON_0006450; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/126,neuron type senmot 126,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001382, http://purl.obolibrary.org/obo/UBERON_0001267, http://purl.obolibrary.org/obo/UBERON_0006450; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/125,neuron type senmot 125,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005465, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0000950; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/131,neuron type senmot 131,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005465, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0001368; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/144,neuron type senmot 144,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0035207, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0001385; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/75,neuron type senmot 75,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0006454, http://uri.interlex.org/base/ilx_0787443, http://purl.obolibrary.org/obo/UBERON_0002403, http://purl.obolibrary.org/obo/UBERON_0006458, http://uri.interlex.org/base/ilx_0787969, http://uri.interlex.org/base/ilx_0785435, http://purl.obolibrary.org/obo/UBERON_0006453, http://purl.obolibrary.org/obo/UBERON_0006455, http://uri.interlex.org/base/ilx_0792132, http://uri.interlex.org/base/ilx_0792543, http://uri.interlex.org/base/ilx_0785076, http://uri.interlex.org/base/ilx_0789482, http://purl.obolibrary.org/obo/UBERON_0006452, http://purl.obolibrary.org/obo/UBERON_0006456, http://purl.obolibrary.org/obo/UBERON_0006459, http://uri.interlex.org/base/ilx_0791808, http://purl.obolibrary.org/obo/UBERON_0006467, http://uri.interlex.org/base/ilx_0792193, http://uri.interlex.org/base/ilx_0784694, http://purl.obolibrary.org/obo/UBERON_0006466, http://uri.interlex.org/base/ilx_0789287, http://purl.obolibrary.org/obo/UBERON_0006465; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/74,neuron type senmot 74,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0006454, http://uri.interlex.org/base/ilx_0787443, http://purl.obolibrary.org/obo/UBERON_0006458, http://uri.interlex.org/base/ilx_0787969, http://purl.obolibrary.org/obo/UBERON_0005441, http://purl.obolibrary.org/obo/UBERON_0006453, http://uri.interlex.org/base/ilx_0785435, http://purl.obolibrary.org/obo/UBERON_0006455, http://uri.interlex.org/base/ilx_0792132, http://uri.interlex.org/base/ilx_0792543, http://uri.interlex.org/base/ilx_0785076, http://uri.interlex.org/base/ilx_0789482, http://purl.obolibrary.org/obo/UBERON_0006452, http://purl.obolibrary.org/obo/UBERON_0006456, http://purl.obolibrary.org/obo/UBERON_0006459, http://uri.interlex.org/base/ilx_0791808, http://purl.obolibrary.org/obo/UBERON_0006467, http://uri.interlex.org/base/ilx_0792193, http://uri.interlex.org/base/ilx_0784694, http://purl.obolibrary.org/obo/UBERON_0006466, http://uri.interlex.org/base/ilx_0789287, http://purl.obolibrary.org/obo/UBERON_0006465; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/76,neuron type senmot 76,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0006454, http://uri.interlex.org/base/ilx_0787443, http://purl.obolibrary.org/obo/UBERON_0006458, http://uri.interlex.org/base/ilx_0787969, http://uri.interlex.org/base/ilx_0785435, http://purl.obolibrary.org/obo/UBERON_0006453, http://purl.obolibrary.org/obo/UBERON_0006455, http://uri.interlex.org/base/ilx_0792132, http://uri.interlex.org/base/ilx_0792543, http://uri.interlex.org/base/ilx_0785076, http://purl.obolibrary.org/obo/UBERON_0008617, http://uri.interlex.org/base/ilx_0789482, http://purl.obolibrary.org/obo/UBERON_0006452, http://purl.obolibrary.org/obo/UBERON_0006456, http://purl.obolibrary.org/obo/UBERON_0006459, http://uri.interlex.org/base/ilx_0791808, http://purl.obolibrary.org/obo/UBERON_0006467, http://uri.interlex.org/base/ilx_0792193, http://uri.interlex.org/base/ilx_0784694, http://purl.obolibrary.org/obo/UBERON_0006466, http://uri.interlex.org/base/ilx_0789287, http://purl.obolibrary.org/obo/UBERON_0006465; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/77,neuron type senmot 77,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006459, http://purl.obolibrary.org/obo/UBERON_0006458, http://purl.obolibrary.org/obo/UBERON_0002404, http://uri.interlex.org/base/ilx_0785435, http://purl.obolibrary.org/obo/UBERON_0006453, http://purl.obolibrary.org/obo/UBERON_0006454, http://uri.interlex.org/base/ilx_0784694, http://uri.interlex.org/base/ilx_0787443, http://uri.interlex.org/base/ilx_0789287, http://uri.interlex.org/base/ilx_0789482, http://purl.obolibrary.org/obo/UBERON_0006452; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/107,neuron type senmot 107,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0008544, http://purl.obolibrary.org/obo/UBERON_0006459, http://purl.obolibrary.org/obo/UBERON_0006453, http://purl.obolibrary.org/obo/UBERON_0006454, http://uri.interlex.org/base/ilx_0794959, http://purl.obolibrary.org/obo/UBERON_0006452; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/104,neuron type senmot 104,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006459, http://purl.obolibrary.org/obo/UBERON_0006458, http://uri.interlex.org/base/ilx_0794989, http://uri.interlex.org/base/ilx_0785435, http://purl.obolibrary.org/obo/UBERON_0006453, http://uri.interlex.org/base/ilx_0784694, http://uri.interlex.org/base/ilx_0787443, http://uri.interlex.org/base/ilx_0789482, http://purl.obolibrary.org/obo/UBERON_0006452; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/97,neuron type senmot 97,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0792543, http://uri.interlex.org/base/ilx_0785076, http://purl.obolibrary.org/obo/UBERON_0006456, http://uri.interlex.org/base/ilx_0791808, http://purl.obolibrary.org/obo/UBERON_0006455, http://purl.obolibrary.org/obo/UBERON_0002382, http://uri.interlex.org/base/ilx_0787969, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006465, http://uri.interlex.org/base/ilx_0791046, http://uri.interlex.org/base/ilx_0792132; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/94,neuron type senmot 94,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0792543, http://uri.interlex.org/base/ilx_0785076, http://purl.obolibrary.org/obo/UBERON_0006456, http://uri.interlex.org/base/ilx_0791808, http://purl.obolibrary.org/obo/UBERON_0006455, http://uri.interlex.org/base/ilx_0787969, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006465, http://purl.obolibrary.org/obo/UBERON_0005442, http://uri.interlex.org/base/ilx_0791046, http://uri.interlex.org/base/ilx_0792132; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/42,neuron type senmot 42,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002381, http://uri.interlex.org/base/ilx_0784839, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://uri.interlex.org/base/ilx_0785370; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/14,neuron type senmot 14,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794964, http://purl.obolibrary.org/obo/UBERON_0006457, http://uri.interlex.org/base/ilx_0794949; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/15,neuron type senmot 15,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://uri.interlex.org/base/ilx_0794949, http://purl.obolibrary.org/obo/UBERON_0011012; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/27,neuron type senmot 27,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794994, http://purl.obolibrary.org/obo/UBERON_0006457, http://uri.interlex.org/base/ilx_0794969; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/28,neuron type senmot 28,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794969, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0001501; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/23,neuron type senmot 23,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794969, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0006505; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/24,neuron type senmot 24,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794969, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0036172; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/26,neuron type senmot 26,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0036174, http://purl.obolibrary.org/obo/UBERON_0006457, http://uri.interlex.org/base/ilx_0794969; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/25,neuron type senmot 25,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794969, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0036176; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/43,neuron type senmot 43,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794975, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0001100; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/13,neuron type senmot 13,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0008465, http://uri.interlex.org/base/ilx_0794949, http://purl.obolibrary.org/obo/UBERON_0001148, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/8,neuron type senmot 8,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0001523, http://purl.obolibrary.org/obo/UBERON_0001148; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/5,neuron type senmot 5,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0001148, http://purl.obolibrary.org/obo/UBERON_0003222; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/22,neuron type senmot 22,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0001523, http://purl.obolibrary.org/obo/UBERON_0001494; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/46,neuron type senmot 46,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0001492, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0001506, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/47,neuron type senmot 47,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0003228, http://purl.obolibrary.org/obo/UBERON_0001492, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006457, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/132,neuron type senmot 132,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0001374, http://purl.obolibrary.org/obo/UBERON_0001322; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/133,neuron type senmot 133,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0001375, http://purl.obolibrary.org/obo/UBERON_0001322; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/134,neuron type senmot 134,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001381, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0001322; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/93,neuron type senmot 93,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0787528, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0008529, http://purl.obolibrary.org/obo/UBERON_0006460, http://uri.interlex.org/base/ilx_0790504; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/135,neuron type senmot 135,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0001388, http://purl.obolibrary.org/obo/UBERON_0001323; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/137,neuron type senmot 137,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0001389, http://purl.obolibrary.org/obo/UBERON_0001323; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/136,neuron type senmot 136,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0011905, http://purl.obolibrary.org/obo/UBERON_0001323; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/151,neuron type senmot 151,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0035110, http://purl.obolibrary.org/obo/UBERON_0006461, http://uri.interlex.org/base/ilx_0794993, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/152,neuron type senmot 152,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0035110, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006462, http://purl.obolibrary.org/obo/UBERON_0006460, http://uri.interlex.org/base/ilx_0794995; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/150,neuron type senmot 150,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0035111, http://purl.obolibrary.org/obo/UBERON_0001666, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/149,neuron type senmot 149,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0008464, http://purl.obolibrary.org/obo/UBERON_0035111, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/148,neuron type senmot 148,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0000372, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0035207, http://purl.obolibrary.org/obo/UBERON_0006460, http://uri.interlex.org/base/ilx_0794992; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/155,neuron type senmot 155,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0035111, http://purl.obolibrary.org/obo/UBERON_0011022; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/139,neuron type senmot 139,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0001323, http://purl.obolibrary.org/obo/UBERON_0001392; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/140,neuron type senmot 140,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001666, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0001323; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/90,neuron type senmot 90,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0785238, http://uri.interlex.org/base/ilx_0788532, http://purl.obolibrary.org/obo/UBERON_0004486, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://uri.interlex.org/base/ilx_0773631, http://purl.obolibrary.org/obo/UBERON_0006462, http://uri.interlex.org/base/ilx_0788777; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/84,neuron type senmot 84,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001367, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://uri.interlex.org/base/ilx_0773631, http://purl.obolibrary.org/obo/UBERON_0006462, http://uri.interlex.org/base/ilx_0788777; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,neuron type kidney 137,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795056, http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0002014, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0018675, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/80,neuron type senmot 80,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011390, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://uri.interlex.org/base/ilx_0741764, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/81,neuron type senmot 81,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011390, http://uri.interlex.org/base/ilx_0792327, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://uri.interlex.org/base/ilx_0794984, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/82,neuron type senmot 82,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011390, http://uri.interlex.org/base/ilx_0792327, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0006462, http://uri.interlex.org/base/ilx_0794985; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/83,neuron type senmot 83,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011390, http://uri.interlex.org/base/ilx_0792327, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://uri.interlex.org/base/ilx_0794986, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/78,neuron type senmot 78,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011390, http://purl.obolibrary.org/obo/UBERON_0001339, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/79,neuron type senmot 79,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011390, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0011389, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/87,neuron type senmot 87,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011391, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://uri.interlex.org/base/ilx_0741796, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/86,neuron type senmot 86,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0004919, http://purl.obolibrary.org/obo/UBERON_0011391, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/157,neuron type senmot 157,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0035110, http://uri.interlex.org/base/ilx_0794958, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/154,neuron type senmot 154,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0001504, http://purl.obolibrary.org/obo/UBERON_0035110, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/159,neuron type senmot 159,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0035110, http://purl.obolibrary.org/obo/UBERON_0006502, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/156,neuron type senmot 156,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0014379, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0035110, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/158,neuron type senmot 158,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0035110, http://purl.obolibrary.org/obo/UBERON_0006499, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0035207, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/153,neuron type senmot 153,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0001504, http://purl.obolibrary.org/obo/UBERON_0035111, http://purl.obolibrary.org/obo/UBERON_0006462; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/91,neuron type senmot 91,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001327, http://purl.obolibrary.org/obo/UBERON_0006463, http://purl.obolibrary.org/obo/UBERON_0006462, http://uri.interlex.org/base/ilx_0788532, http://uri.interlex.org/base/ilx_0788777; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/105,neuron type senmot 105,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0792543, http://uri.interlex.org/base/ilx_0785076, http://uri.interlex.org/base/ilx_0728645, http://purl.obolibrary.org/obo/UBERON_0006467, http://purl.obolibrary.org/obo/UBERON_0006466, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006465, http://uri.interlex.org/base/ilx_0791046, http://uri.interlex.org/base/ilx_0792132; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/98,neuron type senmot 98,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0011016, http://uri.interlex.org/base/ilx_0791046, http://purl.obolibrary.org/obo/UBERON_0006468; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/110,neuron type senmot 110,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794956, http://purl.obolibrary.org/obo/UBERON_0006469, http://uri.interlex.org/base/ilx_0795006; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/111,neuron type senmot 111,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795006, http://purl.obolibrary.org/obo/UBERON_0006469, http://uri.interlex.org/base/ilx_0794957; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/108,neuron type senmot 108,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006469, http://uri.interlex.org/base/ilx_0795006, http://purl.obolibrary.org/obo/UBERON_0008454; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/109,neuron type senmot 109,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0008455, http://purl.obolibrary.org/obo/UBERON_0006469, http://uri.interlex.org/base/ilx_0795006; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/21,neuron type senmot 21,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0001494, http://purl.obolibrary.org/obo/UBERON_0001522; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/16,neuron type senmot 16,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794950, http://uri.interlex.org/base/ilx_0794966, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0034736, http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794965, http://purl.obolibrary.org/obo/UBERON_0003692, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/54,neuron type senmot 54,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001492, http://purl.obolibrary.org/obo/UBERON_0002989, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/58,neuron type senmot 58,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://uri.interlex.org/base/ilx_0794978, http://purl.obolibrary.org/obo/UBERON_0006493, http://uri.interlex.org/base/ilx_0794967; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/55,neuron type senmot 55,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0001527, http://purl.obolibrary.org/obo/UBERON_0006493, http://uri.interlex.org/base/ilx_0794967; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/57,neuron type senmot 57,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0003234, http://purl.obolibrary.org/obo/UBERON_0006493, http://uri.interlex.org/base/ilx_0794967; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/56,neuron type senmot 56,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0017618, http://purl.obolibrary.org/obo/UBERON_0006493, http://uri.interlex.org/base/ilx_0794967; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/10,neuron type senmot 10,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0001148, http://uri.interlex.org/base/ilx_0794963; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/9,neuron type senmot 9,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0008446, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0001148; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/6,neuron type senmot 6,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006470, http://purl.obolibrary.org/obo/UBERON_0016493, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0001148; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/106,neuron type senmot 106,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0791512, http://purl.obolibrary.org/obo/UBERON_0006490, http://purl.obolibrary.org/obo/UBERON_0000711, http://uri.interlex.org/base/ilx_0788280, http://purl.obolibrary.org/obo/UBERON_0006488; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/68,neuron type senmot 68,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006488, http://purl.obolibrary.org/obo/UBERON_0006490, http://purl.obolibrary.org/obo/UBERON_0002380, http://purl.obolibrary.org/obo/UBERON_0002019; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/69,neuron type senmot 69,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006490, http://purl.obolibrary.org/obo/UBERON_0001780, http://uri.interlex.org/base/ilx_0794979, http://purl.obolibrary.org/obo/UBERON_0005461, http://purl.obolibrary.org/obo/UBERON_0006488; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/70,neuron type senmot 70,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794979, http://purl.obolibrary.org/obo/UBERON_0006490, http://purl.obolibrary.org/obo/UBERON_0006491, http://uri.interlex.org/base/ilx_0794980; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/71,neuron type senmot 71,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794979, http://uri.interlex.org/base/ilx_0794981, http://purl.obolibrary.org/obo/UBERON_0006490, http://purl.obolibrary.org/obo/UBERON_0006491; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/73,neuron type senmot 73,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0788975, http://purl.obolibrary.org/obo/UBERON_0006491, http://uri.interlex.org/base/ilx_0794983; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/37,neuron type senmot 37,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001477, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006492, http://uri.interlex.org/base/ilx_0794966; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/40,neuron type senmot 40,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002383, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006492, http://uri.interlex.org/base/ilx_0794966; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/72,neuron type senmot 72,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0008779, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006492, http://uri.interlex.org/base/ilx_0794982; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/35,neuron type senmot 35,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001476, http://purl.obolibrary.org/obo/UBERON_0001493, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006492; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/36,neuron type senmot 36,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001493, http://purl.obolibrary.org/obo/UBERON_0010496, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006492; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/41,neuron type senmot 41,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://uri.interlex.org/base/ilx_0790949, http://uri.interlex.org/base/ilx_0789143, http://purl.obolibrary.org/obo/UBERON_0002381, http://purl.obolibrary.org/obo/UBERON_0006492, http://uri.interlex.org/base/ilx_0788303, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/38,neuron type senmot 38,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://uri.interlex.org/base/ilx_0794972, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0001478; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/39,neuron type senmot 39,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006492, http://uri.interlex.org/base/ilx_0794973, http://purl.obolibrary.org/obo/UBERON_0001129, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/3,neuron type senmot 3,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794948, http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0003724; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/1,neuron type senmot 1,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0001505, http://purl.obolibrary.org/obo/UBERON_0003724; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/2,neuron type senmot 2,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006491, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0001507, http://purl.obolibrary.org/obo/UBERON_0003724; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/49,neuron type senmot 49,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001492, http://purl.obolibrary.org/obo/UBERON_0001524, http://purl.obolibrary.org/obo/UBERON_0006492; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/48,neuron type senmot 48,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001492, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0011011; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/11,neuron type senmot 11,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0795018, http://purl.obolibrary.org/obo/UBERON_0001148, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006493, http://uri.interlex.org/base/ilx_0795064; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/12,neuron type senmot 12,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001148, http://uri.interlex.org/base/ilx_0795065, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0006493, http://uri.interlex.org/base/ilx_0795018; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/4,neuron type senmot 4,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001148, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0006492, http://purl.obolibrary.org/obo/UBERON_0001520; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/7,neuron type senmot 7,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001521, http://purl.obolibrary.org/obo/UBERON_0001148, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0006492; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/103,neuron type senmot 103,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0786390, http://purl.obolibrary.org/obo/UBERON_0001112, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/53,neuron type senmot 53,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001526, http://purl.obolibrary.org/obo/UBERON_0006493, http://uri.interlex.org/base/ilx_0794967; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/51,neuron type senmot 51,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0007612, http://purl.obolibrary.org/obo/UBERON_0006493, http://uri.interlex.org/base/ilx_0794967; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/52,neuron type senmot 52,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0007614, http://purl.obolibrary.org/obo/UBERON_0006493, http://uri.interlex.org/base/ilx_0794967; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/50,neuron type senmot 50,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794977, http://purl.obolibrary.org/obo/UBERON_0006493, http://purl.obolibrary.org/obo/UBERON_0001525; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/45,neuron type senmot 45,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0794976, http://purl.obolibrary.org/obo/UBERON_0001492, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/44,neuron type senmot 44,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001492, http://purl.obolibrary.org/obo/UBERON_0001509, http://purl.obolibrary.org/obo/UBERON_0006493; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/1,neuron type mmset1 1,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0004917, http://purl.obolibrary.org/obo/UBERON_0011390, http://purl.obolibrary.org/obo/UBERON_0022278; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9606" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,neuron type prostate 25,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005303, http://purl.obolibrary.org/obo/UBERON_0005453, http://purl.obolibrary.org/obo/UBERON_0011926, http://purl.obolibrary.org/obo/UBERON_0004243; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9615" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,neuron type prostate 24,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006447, http://purl.obolibrary.org/obo/UBERON_0005453, http://purl.obolibrary.org/obo/UBERON_0006449, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0018683; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9615" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,neuron type prostate 26,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0005453, http://uri.interlex.org/base/ilx_0738432, http://purl.obolibrary.org/obo/UBERON_0006461, http://purl.obolibrary.org/obo/UBERON_0006460, http://purl.obolibrary.org/obo/UBERON_0018675, http://purl.obolibrary.org/obo/UBERON_0006462; Sex information not found: http://purl.obolibrary.org/obo/PATO_0000384; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9615" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,neuron type kidney 147,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0018676, http://uri.interlex.org/base/ilx_0788315, http://purl.obolibrary.org/obo/UBERON_0002113, http://purl.obolibrary.org/obo/UBERON_0001964, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://uri.interlex.org/base/ilx_0786933, http://purl.obolibrary.org/obo/UBERON_0018683, http://uri.interlex.org/base/ilx_0739295; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9685" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/148,neuron type kidney 148,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0787227, http://uri.interlex.org/base/ilx_0795029, http://uri.interlex.org/base/ilx_0795031, http://purl.obolibrary.org/obo/UBERON_0002113, http://uri.interlex.org/base/ilx_0795030, http://purl.obolibrary.org/obo/UBERON_0002857, http://uri.interlex.org/base/ilx_0792058, http://purl.obolibrary.org/obo/UBERON_0002856, http://uri.interlex.org/base/ilx_0787779, http://purl.obolibrary.org/obo/UBERON_0002858; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9685; Axiom(s) not found for: http://purl.obolibrary.org/obo/UBERON_0018683" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,neuron type kidney 147-1,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0018676, http://purl.obolibrary.org/obo/UBERON_0005479, http://uri.interlex.org/base/ilx_0795057, http://purl.obolibrary.org/obo/UBERON_0002113; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9685" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,neuron type kidney 146,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793361, http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0006449, http://uri.interlex.org/base/ilx_0788315, http://uri.interlex.org/base/ilx_0793220, http://uri.interlex.org/base/ilx_0793221, http://uri.interlex.org/base/ilx_0793357, http://uri.interlex.org/base/ilx_0793218, http://uri.interlex.org/base/ilx_0793219, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006450, http://uri.interlex.org/base/ilx_0789862, http://uri.interlex.org/base/ilx_0787009, http://purl.obolibrary.org/obo/UBERON_0006451, http://uri.interlex.org/base/ilx_0786933, http://uri.interlex.org/base/ilx_0739295; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9685" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,neuron type kidney 146-1,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0006448, http://purl.obolibrary.org/obo/UBERON_0006449, http://uri.interlex.org/base/ilx_0795057, http://purl.obolibrary.org/obo/UBERON_0005479, http://purl.obolibrary.org/obo/UBERON_0001964, http://uri.interlex.org/base/ilx_0793357, http://purl.obolibrary.org/obo/UBERON_0006468, http://purl.obolibrary.org/obo/UBERON_0006450, http://purl.obolibrary.org/obo/UBERON_0006451, http://purl.obolibrary.org/obo/UBERON_0018683; Species not found: http://purl.obolibrary.org/obo/NCBITaxon_9685" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,neuron type mmset1 4,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001989, http://uri.interlex.org/base/ilx_0793621, http://purl.obolibrary.org/obo/UBERON_0001831" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,neuron type mmset1 3,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001989, http://purl.obolibrary.org/obo/UBERON_0022301, http://purl.obolibrary.org/obo/UBERON_0001607, http://purl.obolibrary.org/obo/UBERON_0002024, http://purl.obolibrary.org/obo/UBERON_0011194" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,neuron type mmset1 3a,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001989, http://purl.obolibrary.org/obo/UBERON_0001607, http://purl.obolibrary.org/obo/UBERON_0022302, http://purl.obolibrary.org/obo/UBERON_0002024, http://purl.obolibrary.org/obo/UBERON_0011194" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,neuron type mmset2cn 4,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0022302, http://purl.obolibrary.org/obo/UBERON_0002058, http://purl.obolibrary.org/obo/UBERON_0001605" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,neuron type mmset2cn 5,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0022302, http://purl.obolibrary.org/obo/UBERON_0001607, http://purl.obolibrary.org/obo/UBERON_0002058" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,neuron type mmset2cn 11,invalid,"Entities not found: http://uri.interlex.org/base/ilx_0793737, http://purl.obolibrary.org/obo/UBERON_0002059, http://purl.obolibrary.org/obo/UBERON_0001736" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,neuron type mmset2cn 12,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002059, http://uri.interlex.org/base/ilx_0793738, http://purl.obolibrary.org/obo/UBERON_0003729" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,neuron type mmset2cn 10,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001832, http://uri.interlex.org/base/ilx_0793739, http://purl.obolibrary.org/obo/UBERON_0002059" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,neuron type mmset2cn 1,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002141, http://purl.obolibrary.org/obo/UBERON_0002058, http://purl.obolibrary.org/obo/UBERON_0001643" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,neuron type mmset2cn 3,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0009675, http://purl.obolibrary.org/obo/UBERON_0002149, http://purl.obolibrary.org/obo/UBERON_0001647, http://purl.obolibrary.org/obo/UBERON_0003721, http://purl.obolibrary.org/obo/UBERON_0002059" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,neuron type mmset1 10,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003962, http://uri.interlex.org/base/ilx_0793702, http://purl.obolibrary.org/obo/UBERON_0002149, http://purl.obolibrary.org/obo/UBERON_0001647, http://purl.obolibrary.org/obo/UBERON_0018412" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,neuron type mmset1 5,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0002872, http://purl.obolibrary.org/obo/UBERON_0036216, http://purl.obolibrary.org/obo/UBERON_0001649, http://purl.obolibrary.org/obo/UBERON_0003963, http://uri.interlex.org/base/ilx_0793722" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,neuron type mmset2cn 9,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0008810, http://purl.obolibrary.org/obo/UBERON_0003962, http://purl.obolibrary.org/obo/UBERON_0001826" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,neuron type mmset2cn 7,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0003962, http://purl.obolibrary.org/obo/UBERON_0011096, http://purl.obolibrary.org/obo/UBERON_0001817, http://uri.interlex.org/base/ilx_0793711" -http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,neuron type mmset2cn 6,invalid,"Entities not found: http://purl.obolibrary.org/obo/UBERON_0001831, http://purl.obolibrary.org/obo/UBERON_0003963, http://uri.interlex.org/base/ilx_0793723" diff --git a/applications/composer/backend/ingestion_anomalies_log.csv b/applications/composer/backend/ingestion_anomalies_log.csv deleted file mode 100644 index d9630e8b..00000000 --- a/applications/composer/backend/ingestion_anomalies_log.csv +++ /dev/null @@ -1,6556 +0,0 @@ -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789580,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793827,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001493,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741799,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741757,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794953,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794952,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794997,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005465,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0035111,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795001,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/59,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/65,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/20,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/19,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/29,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/167,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/164,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/165,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/171,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/166,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/170,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/168,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/169,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/99,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/96,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/95,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/128,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/129,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/172,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/97,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/27,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/28,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/23,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/22,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/46,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/47,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/98,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/21,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/58,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/57,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/49,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/48,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/51,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/50,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/45,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No projection phenotypes found. -warning,,"http://purl.obolibrary.org/obo/UBERON_0001258 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003040,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001891 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001893 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0016508,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793559,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0000483 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0016508,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793559,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0000483 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001893 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789862,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786933,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789862,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786933,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0000483 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738312,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001496 (region), http://purl.obolibrary.org/obo/UBERON_0007240 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738312,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006470 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006457 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006458 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006459 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006453 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006454 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006492 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006452 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001496 (region), http://purl.obolibrary.org/obo/UBERON_0007240 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793233,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793234,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793363,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785971,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0014634,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006492 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006491 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006490 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006488 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006489 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006469 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -error,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-1,,No partial order found -warning,,"http://purl.obolibrary.org/obo/UBERON_0006490 (region), http://uri.interlex.org/base/ilx_0738321 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006491 (region), http://uri.interlex.org/base/ilx_0738322 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0005769 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789580,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793827,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001493,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741799,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741757,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794953,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794952,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794997,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005465,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0035111,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795001,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0002185 (region), http://uri.interlex.org/base/ilx_0793764 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0002186 (region), http://uri.interlex.org/base/ilx_0793765 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0002187 (region), http://uri.interlex.org/base/ilx_0775392 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0003126 (region), http://uri.interlex.org/base/ilx_0793684 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001898,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001894,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001530 (region), http://purl.obolibrary.org/obo/UBERON_0037094 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001532 (region), http://uri.interlex.org/base/ilx_0738305 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003716,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003716,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001508 (region), http://uri.interlex.org/base/ilx_0738304 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001894,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001898,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001182 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001195 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001195 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001194 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001194 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006637 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001193 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001193 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001182 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001194 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006637 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001158 (region), http://uri.interlex.org/base/ilx_0776070 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001158 (region), http://uri.interlex.org/base/ilx_0773760 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0001017 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003535,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738313,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001530 (region), http://purl.obolibrary.org/obo/UBERON_0037094 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001649,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0009009,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001532 (region), http://uri.interlex.org/base/ilx_0738305 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738312,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789339,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000388 (region), http://purl.obolibrary.org/obo/UBERON_0004982 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0008862 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0001200 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0001203 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008862 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001200 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001203 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793207,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793219,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0739295,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793227,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785421,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0792838,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793210,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786272,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788945,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0790146,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793211,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786141,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784439,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791062,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793212,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789947,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787946,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789966,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793213,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0790482,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788771,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788026,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793214,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784721,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791560,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787722,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738372,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0774266,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787082,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789894,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793208,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786228,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791105,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784804,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793209,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786722,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787562,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791932,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793215,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784378,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785542,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788670,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793216,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784569,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0792409,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0790602,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793217,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787015,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785067,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0792048,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793218,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787009,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0739298,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008857 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008857 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008862 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001200 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001203 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001199 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0002870,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0002870,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-19,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-20,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-9a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7a,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8a,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-10a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-9v,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7v,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7v,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7v,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8v,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8v,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8v,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-10v,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-2m,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-2i,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-11,,Multiple functional circuit roles found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-12,,Multiple functional circuit roles found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-q-prime,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-q,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-m,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-i,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-k,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-p,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-n,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,No projection phenotypes found. -warning,,"http://purl.obolibrary.org/obo/UBERON_0001258 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003040,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001891 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001893 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0016508,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793559,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0000483 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0016508,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793559,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0000483 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001893 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789862,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786933,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789862,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786933,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0000483 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738312,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001496 (region), http://purl.obolibrary.org/obo/UBERON_0007240 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738312,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006470 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006457 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006458 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006459 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006453 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006454 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006492 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006452 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001496 (region), http://purl.obolibrary.org/obo/UBERON_0007240 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793233,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793234,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793363,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785971,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0014634,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006492 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006491 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006490 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006488 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006489 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006469 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -error,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-1,,No partial order found -warning,,"http://purl.obolibrary.org/obo/UBERON_0006490 (region), http://uri.interlex.org/base/ilx_0738321 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006491 (region), http://uri.interlex.org/base/ilx_0738322 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0005769 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789580,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793827,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001493,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741799,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741757,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794953,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794952,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794997,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005465,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0035111,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795001,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0002185 (region), http://uri.interlex.org/base/ilx_0793764 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0002186 (region), http://uri.interlex.org/base/ilx_0793765 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0002187 (region), http://uri.interlex.org/base/ilx_0775392 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0003126 (region), http://uri.interlex.org/base/ilx_0793684 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001898,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001894,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001530 (region), http://purl.obolibrary.org/obo/UBERON_0037094 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001532 (region), http://uri.interlex.org/base/ilx_0738305 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003716,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003716,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001508 (region), http://uri.interlex.org/base/ilx_0738304 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001894,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001898,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001182 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001195 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001195 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001194 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001194 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006637 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001193 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001193 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001182 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001194 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006637 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001158 (region), http://uri.interlex.org/base/ilx_0776070 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001158 (region), http://uri.interlex.org/base/ilx_0773760 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0001017 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003535,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738313,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001530 (region), http://purl.obolibrary.org/obo/UBERON_0037094 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001649,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0009009,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001532 (region), http://uri.interlex.org/base/ilx_0738305 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738312,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789339,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000388 (region), http://purl.obolibrary.org/obo/UBERON_0004982 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0008862 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0001200 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0001203 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008862 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001200 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001203 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793207,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793219,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0739295,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793227,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785421,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0792838,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793210,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786272,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788945,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0790146,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793211,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786141,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784439,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791062,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793212,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789947,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787946,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789966,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793213,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0790482,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788771,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788026,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793214,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784721,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791560,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787722,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738372,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0774266,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787082,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789894,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793208,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786228,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791105,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784804,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793209,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786722,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787562,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791932,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793215,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784378,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785542,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788670,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793216,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784569,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0792409,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0790602,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793217,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787015,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785067,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0792048,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793218,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787009,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0739298,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008857 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008857 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008862 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001200 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001203 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001199 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0002870,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0002870,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-19,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-20,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-9a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7a,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8a,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-10a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-9v,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7v,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7v,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7v,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8v,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8v,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8v,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-10v,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-2m,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-2i,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-11,,Multiple functional circuit roles found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-12,,Multiple functional circuit roles found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-q-prime,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-q,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-m,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-i,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-k,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-p,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-n,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/59,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/65,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/20,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/19,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/29,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/167,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/164,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/165,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/171,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/166,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/170,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/168,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/169,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/99,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/96,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/95,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/128,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/129,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/172,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/97,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/27,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/28,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/23,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/22,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/46,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/47,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/98,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/21,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/58,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/57,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/49,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/48,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/51,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/50,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/45,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,No projection phenotypes found. -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789580,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793827,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001493,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741799,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741757,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794953,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794952,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794997,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005465,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0035111,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795001,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/59,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/65,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/20,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/19,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/29,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/167,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/164,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/165,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/171,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/166,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/170,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/168,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/169,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/99,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/96,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/95,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/128,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/129,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/172,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/97,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/27,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/28,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/23,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/22,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/46,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/47,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/98,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/21,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/58,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/57,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/49,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/48,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/51,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/50,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/45,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No projection phenotypes found. -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789580,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793827,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001493,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741799,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741757,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794953,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794952,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794997,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005465,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0035111,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795001,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/59,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/65,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/20,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/19,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/29,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/167,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/164,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/165,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/171,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/166,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/170,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/168,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/169,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/99,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/96,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/95,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/128,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/129,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/172,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/97,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/27,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/28,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/23,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/22,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/46,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/47,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/98,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/21,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/58,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/57,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/49,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/48,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/51,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/50,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/45,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No projection phenotypes found. -warning,,"http://purl.obolibrary.org/obo/UBERON_0001258 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003040,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001891 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001893 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0016508,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793559,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0000483 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0016508,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793559,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0000483 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001893 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789862,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786933,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789862,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786933,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001894 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000988 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0000483 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006082 (region), http://purl.obolibrary.org/obo/UBERON_0001135 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738312,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001496 (region), http://purl.obolibrary.org/obo/UBERON_0007240 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738312,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006470 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006457 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006458 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006459 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006453 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006454 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006492 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006452 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001017,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001496 (region), http://purl.obolibrary.org/obo/UBERON_0007240 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793233,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793234,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793363,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000948 (region), http://purl.obolibrary.org/obo/UBERON_0015129 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785971,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0014634,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006492 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006491 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006490 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006488 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006489 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006469 (region), http://purl.obolibrary.org/obo/UBERON_0016549 (layer)",Entity not found in any axiom -error,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-1,,No partial order found -warning,,"http://purl.obolibrary.org/obo/UBERON_0006490 (region), http://uri.interlex.org/base/ilx_0738321 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006491 (region), http://uri.interlex.org/base/ilx_0738322 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0005769 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789580,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793827,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001493,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741799,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741757,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794953,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794952,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794997,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005465,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0035111,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795001,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0002185 (region), http://uri.interlex.org/base/ilx_0793764 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0002186 (region), http://uri.interlex.org/base/ilx_0793765 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0002187 (region), http://uri.interlex.org/base/ilx_0775392 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0003126 (region), http://uri.interlex.org/base/ilx_0793684 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001898,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001894,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001530 (region), http://purl.obolibrary.org/obo/UBERON_0037094 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001532 (region), http://uri.interlex.org/base/ilx_0738305 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003716,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003716,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793621,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001508 (region), http://uri.interlex.org/base/ilx_0738304 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001894,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001898,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001182 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001195 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001195 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001194 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001194 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006637 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001193 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001193 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001182 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001194 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0006637 (region), http://purl.obolibrary.org/obo/UBERON_0005734 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001158 (region), http://uri.interlex.org/base/ilx_0776070 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001158 (region), http://uri.interlex.org/base/ilx_0773760 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793632,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0001017 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003535,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001263 (region), http://purl.obolibrary.org/obo/UBERON_0002384 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738313,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001530 (region), http://purl.obolibrary.org/obo/UBERON_0037094 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001649,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0009009,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001532 (region), http://uri.interlex.org/base/ilx_0738305 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011326,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738312,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789339,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0000388 (region), http://purl.obolibrary.org/obo/UBERON_0004982 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0008862 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0001200 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793558 (region), http://purl.obolibrary.org/obo/UBERON_0001203 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008862 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001200 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001203 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793207,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793219,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0739295,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793227,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785421,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0792838,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793210,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786272,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788945,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0790146,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793211,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786141,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784439,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791062,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793212,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789947,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787946,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789966,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793213,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0790482,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788771,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788026,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793214,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784721,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791560,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787722,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738372,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0774266,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787082,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789894,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793208,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786228,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791105,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784804,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793209,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0786722,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787562,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0791932,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793215,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784378,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785542,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0788670,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793216,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0784569,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0792409,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0790602,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793217,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787015,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0785067,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0792048,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793218,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0787009,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0739298,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003715,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://purl.obolibrary.org/obo/UBERON_0003714 (layer)",Entity not found in any axiom -warning,,"http://purl.obolibrary.org/obo/UBERON_0001896 (region), http://uri.interlex.org/base/ilx_0738320 (layer)",Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0738371,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008857 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008857 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008862 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001200 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001203 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001199 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0002870,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0002870,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0001201 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://purl.obolibrary.org/obo/UBERON_0008863 (layer)",Entity not found in any axiom -warning,,"http://uri.interlex.org/base/ilx_0793658 (region), http://uri.interlex.org/base/ilx_0793656 (layer)",Entity not found in any axiom -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-19,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-20,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-keast-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-9a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7a,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8a,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-10a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-9v,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7v,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7v,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-7v,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8v,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8v,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-8v,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-10v,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-2m,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-2i,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-aacar-14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-11,,Multiple functional circuit roles found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-12,,Multiple functional circuit roles found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-q-prime,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-q,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-m,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-i,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-k,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-p,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-n,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/59,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/65,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/20,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/19,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/29,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/167,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/164,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/165,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/171,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/166,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/170,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/168,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/169,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/99,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/96,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/95,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/128,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/129,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/172,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/97,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/27,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/28,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/23,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/22,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/46,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/47,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/98,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/21,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/58,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/57,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/49,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/48,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/51,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/50,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/45,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-20,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-21,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-19,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-22,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-23,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-28,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-29,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-27,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-d,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-h,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-g,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-f,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bromo-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sdcol-b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-pancr-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-splen-3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-bolew-unbranched-6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,Multiple phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/neuron-type-sstom-10,,No projection phenotypes found. -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0789580,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793827,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795011,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794476,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001759,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005303,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018675,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001493,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795005,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741799,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0003724,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794951,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0741757,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001494,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794967,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794953,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794970,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794952,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018679,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001964,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018681,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794997,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794998,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794999,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001267,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0005465,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795002,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0794996,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001322,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0001492,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0035111,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795000,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0795001,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0011390,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://uri.interlex.org/base/ilx_0793826,Entity not found in any axiom -warning,,http://purl.obolibrary.org/obo/UBERON_0018683,Entity not found in any axiom -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,Multiple sexes found in statement. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3c,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3b,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/swglnd/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/119,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3e,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/89,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/88,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/femrep/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset4/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/semves/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/59,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/64,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/66,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/63,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/61,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/62,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/65,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/67,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/20,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/17,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/18,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/60,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/33,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/32,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/34,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/19,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/31,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/29,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/30,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/163,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/161,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/162,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/167,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/164,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/165,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/171,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/160,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/166,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/170,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/168,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/169,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/85,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/liver/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/116,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/118,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/115,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/141,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/138,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/92,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/112,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/117,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/114,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/113,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/145,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/142,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/143,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/100,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/101,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/99,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/96,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/95,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/124,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/130,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/127,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/128,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/129,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/102,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/123,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/122,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/120,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/121,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/172,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/126,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/125,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/131,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/144,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/75,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/74,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/76,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/77,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/107,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/104,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/97,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/94,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/42,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/14,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/15,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/27,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/28,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/23,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/43,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/13,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/8,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/22,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/46,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/47,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/132,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/133,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/134,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/93,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/135,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/136,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/151,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/152,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/150,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/149,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/155,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/139,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/140,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/90,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/84,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/137,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/80,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/81,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/82,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/83,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/78,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/79,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/87,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/86,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/157,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/154,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/159,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/156,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/158,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/153,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/91,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/105,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/98,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/110,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/111,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/108,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/109,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/21,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/16,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/54,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/58,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/55,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/57,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/56,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/6,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/106,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/68,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/69,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/70,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/71,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/73,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/37,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/40,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/72,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/35,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/36,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/41,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/38,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/39,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/2,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/49,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/48,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/103,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/53,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/51,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/52,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/50,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/45,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/senmot/44,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/25,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/24,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/prostate/26,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/148,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/147-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/kidney/146-1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/3a,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/4,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/11,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/12,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/1,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/3,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/10,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset1/5,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/9,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/7,,No projection phenotypes found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No circuit type found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No valid phenotype found. -warning,http://uri.interlex.org/tgbugs/uris/readable/sparc-nlp/mmset2cn/6,,No projection phenotypes found. From 36e7e26c94d287a4ad1b510e1f12a4f58d1eaa4a Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Tue, 7 Oct 2025 00:54:44 +0100 Subject: [PATCH 35/38] fix: Bump django-admin-sortable2 version --- applications/composer/backend/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/composer/backend/requirements.txt b/applications/composer/backend/requirements.txt index 3a8e248e..f5015dbd 100644 --- a/applications/composer/backend/requirements.txt +++ b/applications/composer/backend/requirements.txt @@ -8,7 +8,7 @@ djangorestframework==3.14.0 django-filter==22.1 django-fsm==2.8.1 django-fsm-admin@git+https://github.com/gadventures/django-fsm-admin@master -django-admin-sortable2==2.1.4 +django-admin-sortable2==2.2.8 django-nested-admin==4.0.2 django-jazzmin==2.6.0 drf-spectacular==0.25.1 From 5fcc078ab48a5354e0ec70fd5a599fc8f96c8935 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Thu, 9 Oct 2025 10:39:36 +0100 Subject: [PATCH 36/38] fix: Correct PopulationSet get_or_create --- .../backend/composer/services/cs_ingestion/helpers/getters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/composer/backend/composer/services/cs_ingestion/helpers/getters.py b/applications/composer/backend/composer/services/cs_ingestion/helpers/getters.py index d58aac5b..29383f14 100644 --- a/applications/composer/backend/composer/services/cs_ingestion/helpers/getters.py +++ b/applications/composer/backend/composer/services/cs_ingestion/helpers/getters.py @@ -58,7 +58,7 @@ def get_phenotype(statement: Dict) -> Optional[Phenotype]: def get_or_create_populationset(populationset_name: str) -> PopulationSet: populationset, _ = PopulationSet.objects.get_or_create( - name=populationset_name, description=populationset_name + name=populationset_name ) return populationset From c7fee585f8eb5a391aad80e0647a4ae9ea662d66 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Fri, 17 Oct 2025 00:10:31 +0100 Subject: [PATCH 37/38] fix: Correct form base spinner logic --- .../src/components/Forms/FormBase.tsx | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/applications/composer/frontend/src/components/Forms/FormBase.tsx b/applications/composer/frontend/src/components/Forms/FormBase.tsx index a8331e55..ed852ef3 100644 --- a/applications/composer/frontend/src/components/Forms/FormBase.tsx +++ b/applications/composer/frontend/src/components/Forms/FormBase.tsx @@ -1,9 +1,9 @@ -import React, {useRef, useState, useEffect} from "react"; +import React, { useRef, useState, useEffect } from "react"; import validator from "@rjsf/validator-ajv8"; -import {IChangeEvent, withTheme} from "@rjsf/core"; -import {Backdrop, Box, CircularProgress} from "@mui/material"; -import {Theme} from "@rjsf/mui"; -import {EDIT_DEBOUNCE} from "../../settings"; +import { IChangeEvent, withTheme } from "@rjsf/core"; +import { Backdrop, Box, CircularProgress } from "@mui/material"; +import { Theme } from "@rjsf/mui"; +import { EDIT_DEBOUNCE } from "../../settings"; import Button from "@mui/material/Button"; const Form = withTheme(Theme); @@ -46,7 +46,7 @@ export const FormBase = (props: any) => { const submitButtonRef = useRef(null); const removeProp = (obj: any, prop: string) => { - const {[prop]: removedProp, ...newObj} = obj; + const { [prop]: removedProp, ...newObj } = obj; return newObj; }; @@ -73,11 +73,11 @@ export const FormBase = (props: any) => { }, [data, schema, uiFields, uiSchema]); const startTimer = () => - (timer.current = setTimeout(() => { - if (enableAutoSave) { - onSave(); - } - }, EDIT_DEBOUNCE)); + (timer.current = setTimeout(() => { + if (enableAutoSave) { + onSave(); + } + }, EDIT_DEBOUNCE)); const stopTimer = () => { clearTimeout(timer.current); @@ -104,7 +104,7 @@ export const FormBase = (props: any) => { }; const handleSubmit = async (event: IChangeEvent) => { - const formData = {...event.formData, ...extraData}; + const formData = { ...event.formData, ...extraData }; const saveOptions = onSaveCancel ? { onCancel: onSaveCancel } : {}; setIsSaving(true); service @@ -130,7 +130,7 @@ export const FormBase = (props: any) => { }; const handleUpdate = async (event: IChangeEvent, id: any) => { - const formData = {...event.formData, ...extraData}; + const formData = { ...event.formData, ...extraData }; if (submitOnBlurFields.some((field: string) => id && id.includes(field))) { resetTimer(); } @@ -160,12 +160,12 @@ export const FormBase = (props: any) => { } }; - const showSpinner = isLoading || isSaving || !data; + const showSpinner = isLoading || isSaving; return ( <> - {showSpinner && ( + {(!data || showSpinner) && ( - + )} From c7a377d4c003ded83682bb4c584690601bebe441 Mon Sep 17 00:00:00 2001 From: afonso pinto Date: Fri, 17 Oct 2025 10:35:48 +0100 Subject: [PATCH 38/38] chore: Bump composer version --- applications/composer/frontend/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/composer/frontend/package.json b/applications/composer/frontend/package.json index 49ef2aaa..de1b433b 100644 --- a/applications/composer/frontend/package.json +++ b/applications/composer/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "5.2.0", + "version": "5.2.3", "private": true, "main": "index.js", "proxy": "http://127.0.0.1:8000/",